답안 #198725

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
198725 2020-01-27T13:31:22 Z Akashi Vision Program (IOI19_vision) C++14
0 / 100
9 ms 1908 KB
#include <bits/stdc++.h>
#include "vision.h"

using namespace std;

struct point{
	int x, y, k;
};

point a, b;

void bin_search(int st, int dr, int n, int m){
	if(st == dr){
		point c;
		c.x = st / m; 
		c.y = st % m;
		c.k = 1;
		
		if(a.k == 0) a = c;
		else b = c;
		
		return ;
	}
	
	int mij = (st + dr) / 2;
	vector <int> left, right;
	
	for(int i = st; i <= mij ; ++i) left.push_back(i);
	for(int i = mij + 1; i <= dr ; ++i) right.push_back(i);
	
	int am_left = add_or(left);
	int am_right = add_or(right);
	
	if(am_left) bin_search(st, mij, n, m);
	if(am_right) bin_search(mij + 1, dr, n, m);
}

void construct_network(int H, int W, int K) {
	bin_search(0, H * W - 1, H, W);

	if(abs(a.x - b.x) + abs(a.y - b.y) == K){
		vector <int> v;
		v.push_back(a.x * W + a.y);
		add_or(v);
	}
	else add_not(a.x * W + a.y);
	

	return ;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 6 ms 256 KB on inputs (0, 0), (0, 1), expected 1, but computed 0
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 6 ms 256 KB on inputs (0, 0), (0, 1), expected 1, but computed 0
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 6 ms 256 KB on inputs (0, 0), (0, 1), expected 1, but computed 0
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 6 ms 256 KB on inputs (0, 0), (0, 1), expected 1, but computed 0
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 6 ms 376 KB on inputs (0, 0), (0, 1), expected 1, but computed 0
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 5 ms 376 KB on inputs (0, 0), (0, 1), expected 1, but computed 0
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 9 ms 1908 KB WA in grader: Too many instructions
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 6 ms 256 KB on inputs (0, 0), (0, 1), expected 1, but computed 0
2 Halted 0 ms 0 KB -