답안 #375001

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
375001 2021-03-08T20:26:16 Z gustason Fire drill (LMIO18_sauga) C++11
63.3974 / 100
847 ms 5052 KB
#include<bits/stdc++.h>
using namespace std;
using ll = long long;

mt19937 rnd(time(NULL));

const int maxN = 1005;
int best = 0;
vector<int> ans, seq, order;
int t, n, S;
vector<int> adj[maxN];
vector<char> col;
vector<bool> ok;
void dfs(int v) {
    col[v] = '1';
    for(int u : adj[v]) {
        if (!ok[u]) continue;
//        cout << v << "-> " << u << " " << col[u] << "\n";
        if (col[u] == '0') {
            dfs(u);
        } else if (col[u] == '1') {
            ok[v] = false;
            return;
        }
    }
    col[v] = '2';
    seq.push_back(v);
}
void solve() {
    for(int i = 0; i <= n; i++) {
        shuffle(adj[i].begin(), adj[i].end(), rnd);
    }
    shuffle(order.begin(), order.end(), rnd);

    vector<int>().swap(seq);
    for(int i = 0; i <= n; i++) {
        col[i] = '0';
        ok[i] = true;
    }

    for(int i : order) {
//        cout << i << " ";
        if (col[i] == '0')
            dfs(i);
    }
//    cerr << "\n";

    vector<int> curr;
    for(int i = 1; i <= n; i++) {
        if (!ok[i])
            curr.push_back(i);
    }
//    for(int i : curr) {
//        cout << i << " ";
//    } cout << "\n";
    int good = n - (int) curr.size();
    if (good <= best) return;

    for(int i : seq) {
        curr.push_back(i);
    }

//    cout << good << "\n";
    ans = curr;
}
int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
    cin >> t >> n >> S;
    order.resize(n);
    col.resize(n+1);
    ok.resize(n+1);
    iota(order.begin(), order.end(), 1);
    for(int i = 0; i < n; i++) {
        int m;
        cin >> m;
        for(int j = 0; j < m; j++) {
            int x;
            cin >> x;
            adj[i+1].push_back(x);
        }
    }

    clock_t beg = clock();
    while((double) (clock() - beg) / CLOCKS_PER_SEC < 0.8) {
        solve();
    }
    for(int i : ans) {
        cout << i << "\n";
    }
    return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 844 ms 5036 KB Output is correct
2 Partially correct 801 ms 620 KB Output is partially correct
3 Partially correct 801 ms 620 KB Output is partially correct
4 Partially correct 802 ms 748 KB Output is partially correct
5 Partially correct 801 ms 524 KB Output is partially correct
6 Partially correct 802 ms 492 KB Output is partially correct
7 Partially correct 808 ms 1192 KB Output is partially correct
8 Partially correct 847 ms 5052 KB Output is partially correct
9 Partially correct 806 ms 1004 KB Output is partially correct
10 Correct 801 ms 492 KB Output is correct