답안 #722979

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
722979 2023-04-13T06:42:04 Z drdilyor Stranded Far From Home (BOI22_island) C++17
0 / 100
1000 ms 16088 KB
#include<bits/stdc++.h>
using namespace std;
using ll = long long;

int main() {
    int n, m;
    cin >> n >> m;
    vector s(n, 0);
    for (int& i : s) cin >> i;

    vector<int> ix(n);
    for (int i{}; i < n ;i++) ix[i] = i;
    stable_sort(ix.begin(), ix.end(), [&](int a, int b) {
        return s[a] > s[b];
    });
    vector<int> jx(n);
    for (int i = 0; i < n; i ++)
        jx[ix[i]] = i;
    stable_sort(s.begin(), s.end(), greater{});

    vector<vector<int>> adj(n);
    for (int i = 0; i < m ;i++) {
        int u, v;
        cin >> u >> v;
        u--;v--;
        adj[jx[u]].push_back(jx[v]);
        adj[jx[v]].push_back(jx[u]);
    }

    //for (int i : ix) cout << i << ' ';cout << endl;
    //for (int i : jx) cout << i << ' ';cout << endl;
    //for (int i : s) cout << i << ' ';cout << endl;
    string res(n, '?');
    for (int i = 0; i < n; i++) {
        set<pair<int,int>> st;
        vector vis(n, 0);
        st.emplace(0, i);
        vis[i] = 1;
        ll sum = s[i];
        while (st.size()) {
            auto [w, j] = *st.begin();
            if (sum < w) break;
            if (j < i) {
                res[i] = res[j];
                break;
            }
            st.erase(st.begin());
            sum += w;
            for (int e : adj[j]) {
                if (!vis[e]) {
                    vis[e] = 1;
                    st.emplace(s[e], e);
                }
            }
        }
        if (res[i] == '?')
            res[i] = char('0' + st.empty());
    }
    string ans(n, '?');
    for (int i = 0; i < n; i++) {
        ans[jx[i]] = res[i];
    }
    cout << ans << '\n';
}
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 212 KB Output is correct
2 Correct 0 ms 212 KB Output is correct
3 Correct 0 ms 212 KB Output is correct
4 Incorrect 88 ms 412 KB Output isn't correct
5 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 212 KB Output is correct
2 Correct 0 ms 212 KB Output is correct
3 Execution timed out 1082 ms 16088 KB Time limit exceeded
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 212 KB Output is correct
2 Execution timed out 1090 ms 14472 KB Time limit exceeded
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 212 KB Output is correct
2 Execution timed out 1049 ms 14812 KB Time limit exceeded
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 212 KB Output is correct
2 Correct 0 ms 212 KB Output is correct
3 Correct 0 ms 212 KB Output is correct
4 Incorrect 88 ms 412 KB Output isn't correct
5 Halted 0 ms 0 KB -