일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- BOJ
- stl
- PIR
- SQL
- 프로그래머스
- 모두를 위한 딥러닝
- 모두를 위한 머신러닝
- c++
- Neural Network
- DFS
- softmax
- 알고리즘 고득점 kit
- deque
- join
- Linear Regression
- ML
- Queue
- sort
- mysql
- 시간초과
- Machine learning
- deep learning
- Programmers
- 한화오션
- 정렬
- CSAP
- 큐
- TensorFlow
- sung kim
- 백준
Archives
- Today
- Total
목록덱 (1)
hello, world!
[baekJoon10866] 덱
https://www.acmicpc.net/problem/10866 10866번: 덱 첫째 줄에 주어지는 명령의 수 N (1 ≤ N ≤ 10,000)이 주어진다. 둘째 줄부터 N개의 줄에는 명령이 하나씩 주어진다. 주어지는 정수는 1보다 크거나 같고, 100,000보다 작거나 같다. 문제에 나와있지 �� www.acmicpc.net /* 날짜: 2020.08.12 번호: 10866 문제: deque */ #include #include #include // strcmp() using namespace std; int main() { deque dq; int N;cin >> N; while (N--) { char order[100];cin >> order; if (!strcmp(order, "push_fr..
BAEKJOON/data structures
2020. 8. 12. 10:00