https://www.acmicpc.net/problem/11656 s.c_str() : string의 시작 주소를 반환s.substr(pos, length) : string의 pos부터 시작하여, length까지를 string으로 return 12345678910111213141516171819202122232425262728293031#include #include #include #include #include using namespace std; string s; bool comp(int x, int y) { return strcmp(s.c_str() + x, s.c_str() + y) > s; vector t; for (int i = 0; i
deque : double ended queue 멤버원형설명atreference at( size_type _Pos ); const_reference at( size_type _Pos ) const;특정 위치의 원소의 참조를 반환backreference back( ); const_reference back( ) const;마지막 원소의 참조를 반환beginconst_iterator begin() const; iterator begin();첫 번째 원소의 랜던 접근 반복자를 반환clearvoid clear();모든 원소를 삭제emptybool empty() const;아무것도 없으면 true 반환enditerator end( ); const_iterator end( ) const;마지막 원소 다음의(미 사용..
https://www.acmicpc.net/problem/1406 linkedlist로 풀 수도 있고, stack으로도 풀 수 있는 문제입니다.저는 stack으로 풀 수 있다는 걸 인지하는 데에 약간의 시간이 필요했습니다. 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556#include #include #include using namespace std; stack left_stack;stack right_stack; int main(){ char str[100001]; cin >> str; for (int i = 0; i > test; char a, b; char tm..
https://www.acmicpc.net/problem/10799 stack의 size를 통하여 계산을 통하게 되면 시간초과가 발생하여 수정하였습니다. 123456789101112131415161718192021222324252627282930313233343536#include #include #include using namespace std; stack st; int main(){ char s[100001]; cin >> s; int result = 0; int cnt = 0; for (int i = 0; i
- Total
- Today
- Yesterday
- C++
- Add TapGesture
- listview
- MVVM
- FEED
- 생활코딩
- 문자열
- command
- XAML
- 객체
- 타일링
- WPF
- DP
- Grid
- 백준온라인
- BFS
- Cell Animation
- 데이터 바인딩
- Custom Cell
- UIView Animation
- CustomCollectionViewCell
- 그래프
- 스택
- BOJ
- Fakebook
- dfs
- 코딩야학
- CollectionView
- 백준
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |