답안 #429000

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
429000 2021-06-15T16:25:38 Z Ahmadsm2005 Vision Program (IOI19_vision) C++14
0 / 100
436 ms 276 KB
#include "vision.h"
//#include "grader.cpp"
#include<bits/stdc++.h>
using namespace std;
void construct_network(int H,int W,int K){
/*std::vector<int>Ns;
Ns = {0, 1};
int a = add_and(Ns);
Ns = {0, a};
int b = add_or(Ns);
Ns = {0, 1, b};
int c = add_xor(Ns);
add_not(c);*/
vector<int>ADD;
int Z=0;
for(int i=0;i<W;i++){
for(int l=0;l<H;l++){
for(int x=i+1;x<W;x++){
for(int z=l+1;z<H;z++){
if(abs(i-x)+abs(l-z)==K){
ADD.push_back(i+l*W);
ADD.push_back(x+z*W);
add_and(ADD);
ADD.clear();
Z++;
}
}
}
}
}
for(int i=W*H;i<W*H+Z;i++){
ADD.push_back(i);
}
add_or(ADD);
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 204 KB WA in grader: Instruction with no inputs
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 204 KB WA in grader: Instruction with no inputs
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 204 KB WA in grader: Instruction with no inputs
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 204 KB WA in grader: Instruction with no inputs
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 204 KB WA in grader: Instruction with no inputs
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 204 KB WA in grader: Instruction with no inputs
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 436 ms 276 KB WA in grader: Instruction with no inputs
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 204 KB WA in grader: Instruction with no inputs
2 Halted 0 ms 0 KB -