Submission #658000

# Submission time Handle Problem Language Result Execution time Memory
658000 2022-11-11T19:51:57 Z sandry24 Game (IOI14_game) C++17
0 / 100
1 ms 468 KB
#include <bits/stdc++.h>
#include "game.h"
using namespace std;
 
typedef long long ll;
typedef vector<int> vi;
typedef pair<int, int> pi;
#define pb push_back
#define mp make_pair
#define f first
#define s second

vector<int> a;

int hasEdge(int u, int v) {
    a[u]--; a[v]--;
    if(a[u] == 0 || a[v] == 0)
        return 0;
    return 1;
}

void initialize(int n) {
    a = vi(n, n-1);
    for(int i = 0; i < n*(n-1)/2; i++){
        int u, v;
        cin >> u >> v;
        cout << hasEdge(u, v) << '\n' << flush;
    }
}
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 468 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 468 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 468 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -