Submission #1054947

# Submission time Handle Problem Language Result Execution time Memory
1054947 2024-08-12T13:16:24 Z Wansur Toy Train (IOI17_train) C++17
0 / 100
2000 ms 1544 KB
#include <bits/stdc++.h>
#include "train.h"
#define ent '\n'
#define  f first
#define s second
//#define int long long

using namespace std;
typedef long long ll;
const int maxn = 5e3 + 12;
const int mod = 1e9 + 7;

vector<int> g[maxn], rg[maxn];
bool won[maxn], del[maxn];
int out[maxn];
int n, m;

vector<int> who_wins(vector<int> a, vector<int> r, vector<int> U, vector<int> V){
    n = a.size(), m = U.size();
    vector<int> ans(n);

    function<bool(int)> check = [&](int v){
        for(int i=0;i<n;i++){
            won[i] = out[i] = 0;
            g[i].clear();
            rg[i].clear();
        }

        for(int i=0;i<m;i++){
            out[U[i]]++;
            g[U[i]].push_back(V[i]);
            rg[V[i]].push_back(U[i]);
        }

        queue<int> q;
        won[v] = 1;
        q.push(v);
        while(q.size()){
            int v = q.front();
            q.pop();
            for(int to:rg[v]){
                if(a[to] == 1 && !won[to]){
                    won[to] = 1;
                    q.push(to);
                }
                if(a[to] == 0){
                    out[to]--;
                    if(!out[to]){
                        won[to] = 1;
                        q.push(to);
                    }
                }
            }
        }

        bool ok = 0;

        for(int to:g[v]){
            ok |= won[to];
        }

        if(ok){
            del[v] = 1;
            for(int i=0;i<n;i++){
                if(won[i]){
                    ans[i] = 1;
                    r[i] = a[i] = 1;
                }
            }
            return 1;
        }

        return 0;
    };

    while(1){
        bool ok = 0;
        for(int i=0;i<n;i++){
            if(r[i] == 1 && !del[i] && check(i)){
                ok = 1;
                break;
            }
        }
        if(!ok) break;
    }

    return ans;
}

Compilation message

train.cpp: In lambda function:
train.cpp:24:29: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
   24 |             won[i] = out[i] = 0;
      |                      ~~~~~~~^~~
# Verdict Execution time Memory Grader output
1 Execution timed out 2065 ms 1116 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 604 KB 3rd lines differ - on the 8th token, expected: '0', found: '1'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 88 ms 1368 KB Output is correct
2 Correct 165 ms 1544 KB Output is correct
3 Correct 255 ms 1372 KB Output is correct
4 Execution timed out 2076 ms 1372 KB Time limit exceeded
5 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1770 ms 1112 KB 3rd lines differ - on the 1st token, expected: '1', found: '0'
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 2013 ms 1368 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 2065 ms 1116 KB Time limit exceeded
2 Halted 0 ms 0 KB -