[2529] 부등호
BOJ/Data Structure2018. 7. 22. 11:54
### Stack ###
[2529] 부등호 : http://boj.kr/2529
<소스코드>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | #include <stdio.h> int main() { int n; int nextL=8, nextS=1; long long int ansL=9LL, ansS=0LL, ans=0LL; long long int arrL[10], arrS[10]; int Lidx=0, Sidx=0; char buf[10]; int factL=10, factS=10; scanf("%d", &n); for(int i=0; i<n; i++) { char ch; scanf(" %c", &ch); if(ch == '<') { if(i == n-1 && nextL == 0) arrL[Lidx++] = 0LL; ansL = 1LL*nextL*factL + ansL; arrS[Sidx++] = ansS; ansS = nextS; factS = 1; } else { arrL[Lidx++] = ansL; ansL = nextL; factL = 1; ansS = 1LL*nextS*factS + ansS; } nextL--; factL *= 10; nextS++; factS *= 10; } arrL[Lidx++] = ansL; arrS[Sidx++] = ansS; for(int i=0; i<Lidx; i++) printf("%lld", arrL[i]); puts(""); for(int i=0; i<Sidx; i++) printf("%lld", arrS[i]); puts(""); return 0; } | cs |
>> 큰수의 경우 '>' 를 만나기 전까지 앞에다 갱신을 해주면 된다 '<' 를 만나면 남은 최대값으로 반복.
>> 알고리즘 분류에 그리디와 위상정렬로 되어 있고, kks227 님도 위상정렬로 해설을 하셨는데,
한편으로 그리디는 맞다고 생각하지만, 위상정렬은 왜 위상정렬인지 아직도 모르겠다.
>> 그럼에도 불구하고 스택으로 분류를 한 이유는 다른 사람이 스택으로 풀었기 때문이고, 아이디어는 내가 푼 것과 비슷하기 때문이다.
>> 그분이 더 머리가 좋아보인다...ㅜ (아래는 그 코드)
- coded by t1234
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | #include <cstdio> #include <stack> int k, n=9; char a[15]; std::stack<int> st; void f() { while(!st.empty()) printf("%d", st.top()), st.pop(); } int main() { int i; scanf("%d", &k); st.push(n--); for(i=0; i<k; i++) { scanf("%s", &a[i]); if(a[i]=='>') f(); st.push(n--); } f(); puts(""); n = 0; st.push(n++); for(i=0; i<k; i++) { if(a[i]=='<') f(); st.push(n++); } f(); return 0; } | cs |
'BOJ > Data Structure' 카테고리의 다른 글
[5639] 이진 검색 트리 (0) | 2018.07.22 |
---|---|
[1655] 가운데를 말해요 (0) | 2018.07.22 |