QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#84535#4511. Wonderland ChaseMacesuted0 2908ms12200kbC++142.0kb2023-03-06 15:44:352023-03-06 15:45:44

Judging History

你现在查看的是最新测评结果

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2023-03-06 15:45:44]
  • 评测
  • 测评结果:0
  • 用时:2908ms
  • 内存:12200kb
  • [2023-03-06 15:44:35]
  • 提交

answer

/**
 * @file 4511.cpp
 * @author Macesuted ([email protected])
 * @date 2023-03-06
 *
 * @copyright Copyright (c) 2023
 *
 */

#include <bits/stdc++.h>
using namespace std;

#ifndef LOCAL
#define endl '\n'
#endif

bool mem1;

#define maxn 100005

queue<int> que;
vector<vector<int>> graph;
int dist[maxn][2], deg[maxn];
bool ban[maxn];

void BFS(int n, int s, int d) {
    for (int i = 1; i <= n; i++) dist[i][d] = 1e9;
    dist[s][d] = 0, que.emplace(s);
    while (!que.empty()) {
        int p = que.front();
        que.pop();
        for (auto i : graph[p])
            if (dist[i][d] == 1e9) dist[i][d] = dist[p][d] + 1, que.push(i);
    }
    return;
}

void solve(void) {
    int n, m, s, t;
    cin >> n >> m >> s >> t;
    graph.clear(), graph.resize(n + 1);
    for (int i = 1; i <= n; i++) deg[i] = 0;
    for (int i = 1, x, y; i <= m; i++) cin >> x >> y, graph[x].push_back(y), graph[y].push_back(x), deg[x]++, deg[y]++;
    BFS(n, s, 0), BFS(n, t, 1);
    if (dist[t][0] == 1e9) return cout << "SAFE" << endl, void();
    for (int i = 1; i <= n; i++)
        if (deg[i] <= 1) que.push(i), ban[i] = true;
    while (!que.empty()) {
        int p = que.front();
        que.pop();
        for (auto i : graph[p])
            if (--deg[i] <= 1 && !ban[i]) ban[i] = true, que.push(i);
    }
    for (int i = 1; i <= n; i++)
        if (!ban[i] && dist[i][0] < dist[i][1]) return cout << "SAFE" << endl, void();
    int ans = 0;
    for (int i = 1; i <= n; i++)
        if (dist[i][0] < dist[i][1]) ans = max(ans, dist[i][1]);
    return cout << ans * 2 << endl, void();
}

bool mem2;

int main() {
    ios::sync_with_stdio(false), cin.tie(nullptr);
#ifdef LOCAL
    cerr << "Memory Cost: " << abs(&mem1 - &mem2) / 1024. / 1024. << "MB" << endl;
#endif

    int _ = 1;
    cin >> _;
    for (int i = 1; i <= _; i++) cout << "Case #" << i << ": ", solve();

#ifdef LOCAL
    cerr << "Time Cost: " << clock() * 1000. / CLOCKS_PER_SEC << "MS" << endl;
#endif
    return 0;
}

详细

Test #1:

score: 0
Wrong Answer
time: 1ms
memory: 3388kb

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: 2
Case #3: 8
Case #4: 6
Case #5: 8
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 #24: 58...

result:

wrong answer 2nd lines differ - expected: 'Case #2: SAFE', found: 'Case #2: 2'

Test #2:

score: 0
Wrong Answer
time: 2908ms
memory: 12200kb

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: 20000
Case #20: 20000
Case #21: 200...

result:

wrong answer 19th lines differ - expected: 'Case #19: SAFE', found: 'Case #19: 20000'