답안 #261867

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
261867 2020-08-12T06:55:27 Z kshitij_sodani Vision Program (IOI19_vision) C++14
0 / 100
209 ms 1780 KB
#include <bits/stdc++.h>
using namespace std;
typedef long long llo;
#define mp make_pair
#define pb push_back
#define a first 
#define b second
#include "vision.h"

void construct_network(int n, int m, int k) {
	vector<int> cur;
	int pos=n*m;
	for(int i=0;i<n;i++){
		for(int j=0;j<m;j++){
			vector<int> cur2;
			for(int kk=0;kk<n;kk++){
				for(int ll=0;ll<m;ll++){
					if(abs(i-kk)+abs(j-ll)==k){
						cur2.pb(kk+ll*m);
					}
				}
			}
			if(cur2.size()==0){
				continue;
			}
			
			add_or(cur2);
			add_and({pos,i+m*j});
			cur.pb(pos+1);
			pos+=2;
		}
	}
	add_or(cur);
	
	/*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);*/
}
# 결과 실행 시간 메모리 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 256 KB WA in grader: Invalid index
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 256 KB Output is correct
2 Correct 1 ms 384 KB Output is correct
3 Correct 17 ms 900 KB Output is correct
4 Incorrect 39 ms 1780 KB on inputs (0, 0), (31, 0), expected 1, but computed 0
5 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 209 ms 1140 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 -