# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
53667 | wilwxk | Bosses (BOI16_bosses) | C++17 | 969 ms | 118424 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int MAXN=6e3+5;
const long long INF=1e18;
vector<int> g[MAXN];
int dist[MAXN][MAXN];
queue<int> q;
long long resp;
int n;
void bfs(int ori) {
q.push(ori); dist[ori][ori]=0;
while(q.size()) {
int cur=q.front(); q.pop();
for(auto viz : g[cur]) {
if(dist[ori][cur]+1<dist[ori][viz]) {
dist[ori][viz]=dist[ori][cur]+1;
q.push(viz);
}
}
}
}
int main() {
scanf("%d", &n);
for(int i=1; i<=n; i++) {
int a; scanf("%d", &a);
while(a--) {
int b; scanf("%d", &b);
g[b].push_back(i);
}
}
for(int i=1; i<=n; i++) for(int j=1; j<=n; j++) dist[i][j]=MAXN;
for(int i=1; i<=n; i++) bfs(i);
resp=INF;
//for(int i=1; i<=n; i++) { for(int j=1; j<=n; j++) printf("%d ", dist[i][j]); printf("\n"); }
for(int i=1; i<=n; i++) {
long long cur=0;
for(int j=1; j<=n; j++) cur+=(dist[i][j]+1);
if(cur<resp) resp=cur;
}
printf("%lld\n", resp);
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |