QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#84546 | #4511. Wonderland Chase | Illusory_dimes | 30 ✓ | 2395ms | 21800kb | C++14 | 2.2kb | 2023-03-06 15:48:26 | 2023-03-06 15:48:28 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define File(a) freopen(a".in", "r", stdin), freopen(a".out", "w", stdout)
#define Check(a) freopen(a".in", "r", stdin), freopen(a".ans", "w", stdout)
typedef long long ll;
typedef unsigned long long ull;
typedef unsigned int ui;
typedef long double ld;
typedef pair<int, int> pii;
#define mp make_pair
#define fi first
#define se second
#define eps 1e-10
const int mod = 1e9 + 7;
template <typename A>
inline int M(A x) {return x;}
template <typename A, typename ... B>
inline int M(A x, B ... args) {return 1ll * x * M(args ...) % mod;}
inline int Mi(const int &x) {return x >= mod ? x - mod : x;}
inline int Ad(const int &x) {return x < 0 ? x + mod : x;}
inline void mi(int &x, const int &y) {x += y; x >= mod && (x -= mod);}
inline void ad(int &x, const int &y) {x -= y; x < 0 && (x += mod);}
const int N = 2e5 + 7, INF = 1e9;
int n, m, X, Y, du[N], d[2][N];
bool vis[N];
vector<int> g[N];
inline void topo() {
queue<int> q;
for (int i = 1; i <= n; ++i) !du[i] && (q.push(i), vis[i] = 1);
while (!q.empty()) {
int u = q.front(); q.pop();
for (int v : g[u]) !vis[v] && !--du[v] && (q.push(v), vis[v] = 1);
}
}
inline void bfs(int s, bool b) {
for (int i = 1; i <= n; ++i) d[b][i] = INF;
queue<int> q; q.push(s), d[b][s] = 0;
while (!q.empty()) {
int u = q.front(); q.pop();
for (int v : g[u]) d[b][v] == INF && (q.push(v), d[b][v] = d[b][u] + 1);
}
}
inline void mian(int I) {
cout << "Case #" << I << ": ";
cin >> n >> m >> X >> Y;
for (int i = 1; i <= n; ++i) g[i].clear(), vis[i] = 0;
for (int i = 1, u, v; i <= m; ++i)
cin >> u >> v, g[u].push_back(v), g[v].push_back(u);
for (int i = 1; i <= n; ++i) du[i] = g[i].size() - 1;
topo();
bfs(X, 0); bfs(Y, 1);
int ans = 0;
for (int i = 1; i <= n; ++i) {
if (!vis[i] && d[0][i] < d[1][i]) return (void)(cout << "SAFE\n");
if (d[0][i] < d[1][i]) {
if (d[1][i] == INF) return (void)(cout << "SAFE\n");
ans = max(ans, d[1][i]);
}
}
cout << ans + ans << "\n";
}
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
int T; cin >> T; for (int i = 1; i <= T; ++i) mian(i);
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 8
Accepted
time: 0ms
memory: 8676kb
input:
100 2 1 1 2 1 2 3 3 1 2 1 3 1 2 2 3 6 6 5 1 1 4 5 6 3 4 3 6 2 3 1 2 6 6 2 4 4 5 1 4 2 3 2 5 1 6 5 6 6 6 2 3 1 3 3 4 2 6 2 5 4 5 1 5 6 5 5 3 2 5 3 4 1 2 3 6 4 6 6 5 1 6 1 4 1 2 5 6 3 5 2 4 30 29 11 5 9 21 25 28 14 20 13 30 21 28 5 18 5 23 8 22 10 30 4 8 7 24 16 26 13 26 12 18 22 23 11 16 3 11 2 17 1 ...
output:
Case #1: 2 Case #2: SAFE Case #3: 8 Case #4: 6 Case #5: SAFE Case #6: SAFE Case #7: SAFE Case #8: SAFE Case #9: SAFE Case #10: 8 Case #11: 4 Case #12: 2 Case #13: SAFE Case #14: 2 Case #15: 10 Case #16: 10 Case #17: 6 Case #18: 2 Case #19: 28 Case #20: 28 Case #21: 18 Case #22: 2 Case #23: 58 Case #...
result:
ok 100 lines
Test #2:
score: 22
Accepted
time: 2395ms
memory: 21800kb
input:
100 100000 99999 32832 52005 67463 96972 10280 86580 12146 44520 41541 86634 46936 64223 22701 46291 9093 80967 52512 77386 51062 58931 2092 55026 2096 2384 85102 92986 39914 66949 33370 68952 41576 58836 27668 33997 5843 30705 44415 57721 15188 28706 23340 55082 20335 90872 16029 80328 4656 74633 8...
output:
Case #1: SAFE Case #2: SAFE Case #3: 8 Case #4: 4 Case #5: 2 Case #6: SAFE Case #7: 2 Case #8: 39998 Case #9: 39998 Case #10: 19192 Case #11: 2 Case #12: 99998 Case #13: 99998 Case #14: 16776 Case #15: 2 Case #16: 199998 Case #17: 199998 Case #18: 141806 Case #19: SAFE Case #20: SAFE Case #21: SAFE ...
result:
ok 100 lines