# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
238871 | 2020-06-13T10:02:28 Z | UserIsUndefined | Vision Program (IOI19_vision) | C++14 | 13 ms | 1152 KB |
#include "vision.h" #include <bits/stdc++.h> using namespace std; map<pair<int,int> , bool> visited; void construct_network(int H, int W, int K) { vector<int> calsXor; vector<int> rowsXor; vector<int> test; for (int i = 0 ; i < H * W ; i++){ if (i && i % W == 0){calsXor.push_back(add_xor(test)); test.clear();} test.push_back(i); } calsXor.push_back(add_xor(test)); test.clear(); for (int i = 0 ; i < W ; i++){ for (int j = i ; j < W * H ; j+= W){ test.push_back(j); } rowsXor.push_back(add_xor(test)); test.clear(); } vector<int> androws; vector<int> andcals; for (int i = 0 ; i < calsXor.size() - 1 ; i++){ andcals.push_back(add_and({calsXor[i], calsXor[i+1]})); } for (int i = 0 ; i < rowsXor.size() - 1 ; i++){ androws.push_back(add_and({rowsXor[i], rowsXor[i+1]})); } int conrow , concal, samerow, samecal; conrow = add_xor(androws); concal = add_xor(andcals); samecal = add_not(add_xor(andcals)); samerow = add_not(add_xor(androws)); int ConRowSameCal, ConCalSameRow; ConCalSameRow = add_and({concal, samerow}); ConRowSameCal = add_and({conrow , samecal}); add_or({ConCalSameRow , ConRowSameCal}); }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 5 ms | 384 KB | WA in grader: Instruction with no inputs |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 5 ms | 384 KB | WA in grader: Instruction with no inputs |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 5 ms | 384 KB | WA in grader: Instruction with no inputs |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 5 ms | 384 KB | WA in grader: Instruction with no inputs |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 5 ms | 384 KB | WA in grader: Instruction with no inputs |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 5 ms | 384 KB | Output is correct |
2 | Incorrect | 5 ms | 256 KB | on inputs (0, 0), (0, 1), expected 0, but computed 1 |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 13 ms | 1152 KB | on inputs (57, 107), (59, 108), expected 0, but computed 1 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 5 ms | 384 KB | WA in grader: Instruction with no inputs |
2 | Halted | 0 ms | 0 KB | - |