이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define fi first
#define se second
#define pb push_back
#define mp make_pair
typedef pair<int, int> ii;
int n;
long long ans = LLONG_MAX;
bool vis[5005];
vector<int> graph[5005];
queue<ii> pq;
long long lmao(int u) {
memset(vis, 0, sizeof(vis));
pq.push({1, u});
long long sum = 0;
vis[u] = 1;
while(!pq.empty()) {
ii frt = pq.front();
pq.pop();
//if(vis[frt.se]) continue;
sum += frt.fi;
for(int i = 0; i < graph[frt.se].size(); i++) {
//cout << graph[u][i] << " " << u << "\n";
int v = graph[frt.se][i];
if(!vis[v]) {
pq.push({frt.fi + 1, v}), vis[v] = 1;
}
}
}
for(int i = 1; i <= n; i++) {
if(!vis[i]) return LLONG_MAX;
}
return sum;
}
int main() {
cin.tie(0), ios::sync_with_stdio(0);
cin >> n;
for(int i = 1; i <= n; i++) {
int k, u;
cin >> k;
while(k--) {
cin >> u;
graph[u].pb(i);
}
}
for(int i = 1; i <= n; i++)
ans = min(ans, lmao(i));
cout << ans;
}
컴파일 시 표준 에러 (stderr) 메시지
bosses.cpp: In function 'long long int lmao(int)':
bosses.cpp:30:26: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int i = 0; i < graph[frt.se].size(); i++) {
~~^~~~~~~~~~~~~~~~~~~~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |