# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
152053 | 2019-09-06T07:13:14 Z | beso123 | Vision Program (IOI19_vision) | C++14 | 2 ms | 504 KB |
#include <bits/stdc++.h> #include "vision.h" using namespace std; int h,w; int to(int x,int y){ int j=w*x+y; return j; } void construct_network(int H, int W, int K){ h=H; w=W; int ind=0,x=0,y=0,x2=0,y2=0; for(int k=1;k<=H;k++){ vector <int> v; for(int i=1;i<=W;i++){ int j=to(k,i); v.push_back(j); } int i=add_or(v); if(i==1){ if(x==0) x=k; else x2=k; ind++; } } if(ind==1) x2=x; ind=0; for(int k=1;k<=W;k++){ vector <int> v; for(int i=1;i<=H;i++){ int j=to(i,k); v.push_back(j); } int i=add_or(v); if(i==1){ if(y==0) y=k; else y2=k; ind++; } } if(ind==1) y2=y; int p=abs(x-x2)+abs(y-y2); if(p==K){ vector <int> sab; sab.push_back(to(x,x2)); add_and(sab); } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 376 KB | WA in grader: Invalid index |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 376 KB | WA in grader: Invalid index |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 376 KB | WA in grader: Invalid index |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 376 KB | WA in grader: Invalid index |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 252 KB | WA in grader: Invalid index |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 256 KB | WA in grader: Invalid index |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 504 KB | WA in grader: Invalid index |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 376 KB | WA in grader: Invalid index |
2 | Halted | 0 ms | 0 KB | - |