1234567891011121314151617181920212223242526272829303132333435363738394041424344#include #include #include #include using namespace std; int main(){ while (true) { stack stk; char str[100]; scanf("%[^\n]", str); int size = strlen(str); cin.ignore(); if (str[0] == '.' && size == 1) break; bool equal = true; for (size_t i = 0; i
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465#include #include using namespace std; int main() { int command; cin >> command; deque que; for (size_t i = 0; i > str; if (!str.compare("pop_front")) { int size = que.size(); if (size > 0) { cout
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051#include #include using namespace std; int main() { int command; cin >> command; queue que; for (size_t i = 0; i > str; if (!str.compare("pop")) { int size = que.size(); if (size > 0) { cout
1234567891011121314151617181920212223242526272829303132333435363738394041424344#include #include using namespace std; int main() { int command; cin >> command; stack stk; for (size_t i = 0; i > str; if (!str.compare("pop")) { int size = stk.size(); if (size > 0) { cout
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 #include #include using namespace std; int binary_search(int* arr, int start, int end, int number) { int position = (start + end) / 2; if (start > end) return 0; else if (arr[position] == number) { if (arr[start] == number) { return position - start + 1 + binary_search(arr, position + 1, end,..
n과 m은 최대 100,000이다. 무작정 for 돌리면서 찾으면 최악의 경우 시간복잡도가 nm.. n^2이기 때문에 해쉬 맵 사용. 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 #include #include using namespace std; int main() { int argc; scanf("%d", &argc); unordered_map hash; for (size_t i = 0; i
- Total
- Today
- Yesterday
- c++
- DP
- 완전탐색
- 한화큐셀
- 1932
- BFS
- LG
- 알고리즘
- 코딩
- c
- DFS
- 오픈소스
- 카카오
- 피보나치
- 프로그래머스
- PyPy3
- Dynamic Programming
- 구현
- 인공지능
- 동적 계획법
- 백준
- 정렬
- BaekJoon
- 파이썬
- 이분탐색
- webOS
- 플로이드 와셜
- 브루트포스
- 백트래킹
- 컨트리뷰톤
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |