# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
66074 | ikura355 | 007 (CEOI14_007) | C++14 | 418 ms | 17188 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<bits/stdc++.h>
using namespace std;
const int maxn = 2e5 + 5;
const int inf = 1e9;
int n,m,a,b,s1,s2;
vector<int> way[maxn];
int d[2][maxn];
int q[maxn];
int p[maxn], wow[maxn];
int sssp(int k, int u) {
int l = 1, r = 0;
for(int i=1;i<=n;i++) d[k][i] = inf;
d[k][u] = 0; q[++r] = u;
while(l<=r) {
int u = q[l++];
for(auto v : way[u]) {
if(d[k][v] > d[k][u] + 1) {
d[k][v] = d[k][u] + 1; q[++r] = v;
}
}
}
}
bool cmp(int x, int y) {
if(d[0][x]!=d[0][y]) return d[0][x] < d[0][y];
if(d[1][x]!=d[1][y]) return d[1][x] < d[1][y];
return x<y;
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |