답안 #1040997

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1040997 2024-08-01T13:41:19 Z mdn2002 Board Game (JOI24_boardgame) C++17
0 / 100
4000 ms 1048576 KB
/*
Mayoeba Yabureru
*/
#include<bits/stdc++.h>
using namespace std;
void solve() {
    int n, m, k;
    string s;
    cin >> n >> m >> k;
    vector gr(n + 1,vector<int>());
    vector<int> X(n + 1), type(n + 1);
    vector con(n + 1, vector<long long>(k + 1, 1e9));
    con[0].assign(k + 1, 0);
    for (int i = 1; i <= m; i ++) {
        int x, y;
        cin >> x >> y;
        gr[x].push_back(y);
        gr[y].push_back(x);
    }
    cin >> s;
    s.insert(s.begin(), '*');
    for (int i = 1; i <= k; i ++) cin >> X[i];
    for (int i = 1; i <= n; i ++) {
        if (s[i] == '0') continue;
        type[i] = 1;
        for (auto j : gr[i]) {
            if (s[j] == '1') type[i] = 2;
        }
    }
    for (int i = 2; i <= k; i ++) {
        vector<long long> dis(n + 1, 1e9);
        queue<pair<int, int>> q;
        vector<pair<int, long long>> nq;
        dis[X[i]] = 0;
        q.push({X[i], 0});

        int t = 0;
        while (t + 1 <= n) {
            while (q.size()) {
                auto [x, type] = q.front();
                q.pop();
                for (auto u : gr[x]) {
                    if (dis[u] > dis[x] + 1) {
                        dis[u] = dis[x] + 1;
                        if (s[u] == '0') q.push({u, 1});
                        else {
                            con[t + 1][i] = min(con[t + 1][i], dis[u]);
                            nq.push_back({u, dis[u]});
                        }
                    }
                }
                if (type == 0) dis[x] = 1e9;
            }
            if (nq.size() == 0) break;
            dis.assign(n + 1, 1e9);
            for (auto [x, y] : nq) {
                q.push({x, 0});
                dis[x] = min(dis[x], y);
            }
            nq.clear();
            t ++;
        }
    }
    vector<long long> dis(n + 1, 1e18), ans(n + 1, 1e18);
    queue<int> q, nq;
    dis[X[1]] = 0;
    q.push(X[1]);

    int t = 0;
    while (true) {
        long long add = 0;
        for (int i = 2; i <= k; i ++) add += con[t][i];
        while (q.size()) {
            int x = q.front();
            ans[x] = min(ans[x], dis[x] + add);
            q.pop();
            for (auto u : gr[x]) {
                if (dis[u] > dis[x] + 1) {
                    dis[u] = dis[x] + 1;
                    if (s[u] == '0') q.push(u);
                    else {
                        ans[u] = min(ans[u], dis[u] + add);
                        nq.push(u);
                    }
                }
            }
        }
        if (nq.size() == 0) break;
        q = nq;
        while (nq.size()) nq.pop();
        t ++;
    }

    for (int i = 1; i <= n; i ++) cout << ans[i] << endl;
}
/*
5 5 2
1 2
2 3
2 4
3 5
4 5
01000
1 5

12 13 3
1 2
2 3
3 4
4 5
5 6
6 7
7 8
8 9
9 10
1 10
2 9
7 12
11 12
110000011101
1 9 11

*/

int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
    cout.tie(nullptr);

    int T = 1;
    for (int I = 0; I < T; I ++){
        solve();
    }
}
# 결과 실행 시간 메모리 Grader output
1 Correct 145 ms 71252 KB Output is correct
2 Runtime error 354 ms 1048576 KB Execution killed with signal 9
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 4027 ms 71248 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 4085 ms 71244 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 32 ms 604 KB Output is correct
2 Incorrect 525 ms 960 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 4062 ms 7260 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 4062 ms 7260 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 32 ms 604 KB Output is correct
2 Incorrect 525 ms 960 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 145 ms 71252 KB Output is correct
2 Runtime error 354 ms 1048576 KB Execution killed with signal 9
3 Halted 0 ms 0 KB -