# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
286796 | 2020-08-30T23:20:07 Z | medmdg | Vision Program (IOI19_vision) | C++14 | 2 ms | 1148 KB |
#include<bits/stdc++.h> #include "vision.h" using namespace std; void construct_network(int H, int W, int K){ int b1=-1; int b2; for(int i=0;i<max(1,H*W-20);i+=20){ vector<int> h; for(int j=i;j<min(i+20,H*W);j++){ h.push_back(j); } if(add_or(h)){ for(int j=i;j<min(H*W,i+20);j++){ if(add_not(j)==0){ if(b1==-1){ b1=j; }else{ b2=j; } } } } } int x1=b1%W; int x2=b2%W; int y1=b1/W; int y2=b2/W; bool tr=false; if(abs(x1-x2)+abs(y1-y2)==K){ tr=true; } vector<int> h; h.push_back(b1); if(tr){ int f=add_or(h); }else{ int f=add_not(b1); } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 256 KB | WA in grader: Invalid index |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 256 KB | WA in grader: Invalid index |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 256 KB | WA in grader: Invalid index |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 256 KB | WA in grader: Invalid index |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 384 KB | WA in grader: Invalid index |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 256 KB | WA in grader: Invalid index |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 1148 KB | WA in grader: Too many instructions |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 256 KB | WA in grader: Invalid index |
2 | Halted | 0 ms | 0 KB | - |