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
- C
- directx
- C++
- 팰린드롬 만들기
- 2294
- 1563
- UnrealEngine4
- 백준
- NRVO
- softeer
- UnrealEngine5
- DirectX11
- 오블완
- UE5
- 줄 세우기
- GeeksForGeeks
- const
- Unreal Engine5
- 티스토리챌린지
- RootMotion
- winapi
- RVO
- DeferredRendering
- Frustum
- 프로그래머스
- 언리얼엔진5
- baekjoon
- IFileDialog
- algorithm
- Programmers
Archives
- Today
- Total
Game Develop
[Algorithm] Baekjoon 1324번 : 효율적인 해킹 본문
https://www.acmicpc.net/problem/1325
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
#include <iostream>
#include <string>
#include <map>
#include <vector>
#include <algorithm>
#include <math.h>
#include <queue>
#include <functional>
#include <sstream>
#include <memory.h>
#include <deque>
#include <set>
#include <unordered_map>
#include <stack>
#include <numeric>
#include <climits>
#include <bitset>
#include <cmath>
using namespace std;
struct Node
{
int num;
int hackedComputerCount;
};
bool cmp(const Node& a, const Node& b)
{
if (a.hackedComputerCount == b.hackedComputerCount)
{
return a.num < b.num;
}
return a.hackedComputerCount > b.hackedComputerCount;
}
int n, m, a, b;
vector<Node> hackedComputerCounts;
vector<vector<int>> graph(10001);
int BFS(int num)
{
bool visited[10001] = { false };
int count = 0;
visited[num] = true;
queue<int> q;
q.push(num);
while (!q.empty())
{
int curNode = q.front();
q.pop();
for (int i = 0; i < graph[curNode].size(); ++i)
{
int child = graph[curNode][i];
if (!visited[child])
{
visited[child] = true;
++count;
q.push(child);
}
}
}
return count;
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
cin >> n >> m;
hackedComputerCounts.resize(n + 1);
for (int i = 0; i < m; ++i)
{
cin >> a >> b;
graph[b].push_back(a);
}
for (int i = 1; i <= n; ++i)
{
hackedComputerCounts[i] = { i, BFS(i) };
}
sort(hackedComputerCounts.begin(), hackedComputerCounts.end(), cmp);
int standard = hackedComputerCounts[0].hackedComputerCount;
printf("%d ", hackedComputerCounts[0].num);
for (int i = 1; i < hackedComputerCounts.size(); ++i)
{
if (hackedComputerCounts[i].hackedComputerCount != standard)
{
break;
}
printf("%d ", hackedComputerCounts[i].num);
}
}
|
cs |
싸이클없는문젠줄 알고 dp로 시도했었는데 시간초과로 틀렸다.
실버1문제치고 정답률이 18프로밖에 안돼서 '뭔 문제지?' 했는데, 약간 이해가 가는 문제였다.
일단 말해다시피 싸이클이 있는 문제이고, 그렇기때문에 내가 아는선에선 dp로는 못푼다.
대신 이 문제가 실버인 이유가 있는데.. 시간제한이 5초이다.
그렇다. 그냥 노드마다 일일이 완탐으로 풀면된다..
물론 특정알고리즘같은걸 쓰면 매우 효율적으로 풀 수 있다고 한다.
만약 이 문제의 시간제한이 5초가 아닌 1초라면 아마 이문제는 최소 골드2이상?의 문제일것이다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm]Baekjoon 21772번 : 가희의 고구마 먹방 (0) | 2024.10.10 |
---|---|
[Algorithm]Baekjoon 10282번 : 해킹 (0) | 2024.10.08 |
[Algorithm] Baekjoon 1477번 : 휴게소 세우기 (1) | 2024.09.24 |
[Algorithm] Baekjoon 14891번 : 톱니바퀴 (1) | 2024.07.16 |
[Algorithm] Baekjoon 1966번 : 프린터큐 (0) | 2024.06.22 |