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 |
Tags
- 해시
- DynamicProgramming
- 너비우선탐색
- HashMap
- 프로그래머스
- Spring
- 동적계획법
- 해시맵
- switch
- Network
- programmers
- broadcast
- 이분탐색
- DFS
- 깊이우선탐색
- Backtracking
- boj
- 구현
- 알고리즘
- dynamic programming
- 네트워크
- greedy
- Algorithm
- DP
- 스프링
- 백트래킹
- 그리디
- BFS
- 백준
- 브루트포스
Archives
- Today
- Total
목록그래프 (1)
옌의 로그
[Algorithm] 백준 - 효율적인 해킹 (1325번)
문제 [백준] 효율적인 해킹 Contest > Internet Problem Solving Contest > IPSC 2008 B번 > N >> M; graph.resize(N+1); int from, to; for (int i=0; i> to >> from; graph[from].push_back(to); } int max_pc = 0; // 해킹 가능 최대 컴퓨터 수 vector res_com; // 컴터 번호 저장 for (int i=1; i= max_pc) { if (possible_com > max_pc) { max_pc = possible_com; res_com.clear(); } res_com.push_back(i); } fill(visited, visited+N+1, 0); // visit..
스터디/알고리즘
2023. 8. 31. 00:24