250x250
Notice
Recent Posts
Recent Comments
Link
반응형
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- html
- string
- date
- NIO
- CSS
- priority_queue
- alter
- spring boot
- 큐
- JPA
- Java
- 스택
- sql
- 스프링부트
- set
- 힙덤프
- map
- Properties
- union_find
- dfs
- 리소스모니터링
- List
- Calendar
- javascript
- Union-find
- deque
- BFS
- scanner
- math
- GC로그수집
Archives
- Today
- Total
목록백준10866번 (1)
매일 조금씩
백준 10866번: 덱
덱 STL을 활용하면 쉽게 풀수 있는 문제였다. #include #include #include using namespace std; int main(void) { ios_base::sync_with_stdio(0); cin.tie(0);//cin 실행속도 향상 int n; cin >> n; deque dq; for (int i = 0; i > m; if (m == "push_front") { int pf; cin >> pf; dq.push_front(pf); } else if (m == "push_back") { int pb; cin >> pb; dq.push_back(pb); } else if (m == "pop_front") { if (dq.empty..
알고리즘
2020. 4. 8. 18:08