# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
602935 | 2022-07-23T12:53:57 Z | Sergio_2357 | Vision Program (IOI19_vision) | C++17 | 27 ms | 3268 KB |
#include "vision.h" #include <bits/stdc++.h> using namespace std; typedef vector<int> vi; int h, w, k; int cw; int pnt(int x, int y) { return x + (y * w); } int pnt2(int x, int y) { return x + (y * cw); } void construct_network(int H, int W, int K) { h = H; w = W; int si = 0; cw = 1; while (cw < w) { cw *= 2; si++; } k = K; vi bin; for (int b = 0; b < 16; b++) { vi v; for (int i = 0; i < w; i++) { for (int j = 0; j < h; j++) { int idx = pnt(i, j); int idx2 = pnt2(i, j); //if (idx == 10113) // cout << "HERE" << endl; if (!(idx2 & (1 << b))) continue; v.push_back(idx); } } if (v.size()) bin.push_back(add_or(v)); else bin.push_back(add_xor({ 0, 0 })); } int c1 = add_xor({ bin[0], bin[si] }); vi vc2; for (int i = 1; i < bin.size(); i++) { if (i == si) continue; vc2.push_back(bin[i]); } int c2 = add_not(add_or(vc2)); add_and({ c1, c2 }); }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 212 KB | on inputs (0, 1), (0, 2), expected 1, but computed 0 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 212 KB | on inputs (0, 1), (0, 2), expected 1, but computed 0 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 212 KB | on inputs (0, 1), (0, 2), expected 1, but computed 0 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 212 KB | on inputs (0, 1), (0, 2), expected 1, but computed 0 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 212 KB | on inputs (0, 1), (0, 2), expected 1, but computed 0 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 212 KB | Output is correct |
2 | Incorrect | 0 ms | 212 KB | on inputs (0, 0), (0, 1), expected 0, but computed 1 |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 27 ms | 3268 KB | on inputs (80, 199), (81, 199), expected 1, but computed 0 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 212 KB | on inputs (0, 1), (0, 2), expected 1, but computed 0 |
2 | Halted | 0 ms | 0 KB | - |