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 |
Tags
- 힙덤프
- Properties
- dfs
- html
- map
- spring boot
- math
- sql
- 스택
- 큐
- deque
- JPA
- Java
- NIO
- BFS
- 리소스모니터링
- scanner
- GC로그수집
- priority_queue
- set
- string
- Union-find
- javascript
- 스프링부트
- List
- alter
- Calendar
- union_find
- CSS
- date
Archives
- Today
- Total
목록백준11866번 (1)
매일 조금씩
백준 11866번: 요세푸스 문제 0
원형 큐 문제다. 큐 STL이 없었다면 front 와 rear 포인터를 사용해서 풀었겠지만 난 C++로 풀기 때문에 그럴필욘 없었다. 또한 vector로도 풀수 있다. 1. Queue로 푼 코드 #include #include #include #include using namespace std; int n ,k; int main(void) { ios_base::sync_with_stdio(0); cin.tie(0);//cin 실행속도 향상 queue q; cin >> n >> k; for (int i = 1; i n >> m; vector *Per = new vector[n + 1]; // 1-based array for (int i = 0; i push_back(i); // Per = {0, 1, 2,..
알고리즘
2020. 4. 7. 17:12