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
- math
- 힙덤프
- 리소스모니터링
- Calendar
- set
- Union-find
- GC로그수집
- BFS
- List
- Properties
- date
- union_find
- deque
- NIO
- 큐
- CSS
- javascript
- Java
- scanner
- sql
- dfs
- priority_queue
- map
- 스프링부트
- spring boot
- html
- JPA
- alter
- 스택
- string
Archives
- Today
- Total
목록백준18258번 (1)
매일 조금씩
백준 18258번: 큐 2
큐의 명령어를 익히는 간단한 문제이다. #include #include #include #include using namespace std; int n; int main(void) { ios_base::sync_with_stdio(0); cin.tie(0);//cin 실행속도 향상 string q; queue que; cin >> n; for (int i = 0; i > q; if (q == "push") { int p = 0; cin >> p; que.push(p); } else if (q == "pop") if (que.empty()) cout
알고리즘
2020. 4. 7. 15:25