# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
337341 | acmpanda | Game (IOI14_game) | C++14 | 1 ms | 492 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "game.h"
#include "vector"
#include <iostream>
#define DEBUG false
using namespace std;
vector<vector<int> > edges;
vector<int> blob;
vector<int> blobSize;
int N;
void initialize(int n) {
N = n;
edges.clear();
edges.resize(n, vector<int>( n, 0));
blob.resize(n);
blobSize.resize(n);
for (int i = 0; i < n; i++) {
blob[i] = i;
blobSize[i] = 1;
}
}
void printBlobs() {
for (int i = 0; i < N; i++) {
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |