답안 #284117

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
284117 2020-08-26T20:59:40 Z Pichon5 Vision Program (IOI19_vision) C++17
0 / 100
97 ms 1140 KB
#include <bits/stdc++.h>
#include "vision.h"

using namespace std;
///H colums
bool dis(int x,int y, int xx, int yy, int K){
    if(abs(x-xx)+abs(y-yy)==K){
        return true;
    }
    return false;
}
void construct_network(int H, int W, int K) {
	vector<int>v;
	for(int i=0;i<H;i++){
        for(int l=0;l<W;l++){
            for(int ii=0;ii<H;ii++){
                for(int ll=0;ll<W;ll++){
                    if(dis(i,l,ii,ll,K)==true){
                        v.push_back(add_and({i*H+l+1,ii*H+ll+1}));
                    }
                }
            }
        }
	}
	add_or(v);
	/*add_not(c);
	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);*/
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 256 KB on inputs (0, 0), (0, 1), expected 1, but computed 0
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 256 KB on inputs (0, 0), (0, 1), expected 1, but computed 0
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 256 KB on inputs (0, 0), (0, 1), expected 1, but computed 0
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 256 KB on inputs (0, 0), (0, 1), expected 1, but computed 0
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 384 KB on inputs (0, 0), (0, 1), expected 1, but computed 0
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 256 KB on inputs (0, 0), (0, 1), expected 1, but computed 0
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 97 ms 1140 KB WA in grader: Too many instructions
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 256 KB on inputs (0, 0), (0, 1), expected 1, but computed 0
2 Halted 0 ms 0 KB -