답안 #431632

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
431632 2021-06-17T13:52:31 Z kwongweng Vision Program (IOI19_vision) C++17
0 / 100
2 ms 968 KB
#include <bits/stdc++.h>
#include "vision.h"
using namespace std;

void construct_network(int H, int W, int K) {
	vector<int> Ns;
	int a1 = -1, a2 = -1;
	int cnt = 0;
	for (int i = 0; i < W; i++){
		for (int j = 0; j < H; j++){
			int pos = i*W + j;
			int a = add_not(pos);
			if (a == 0){
				if (a1 == -1) a1 = pos;
				else a2 = pos;
			}
		}
	}
	Ns = {a1, a2};
	int c;
	if (abs(a1/W - a2/W) + abs((a1%W) - (a2%W)) == K){
		c = add_and(Ns);
	}else{
		c = add_not(a1);
	}
	return;
}

Compilation message

vision.cpp: In function 'void construct_network(int, int, int)':
vision.cpp:8:6: warning: unused variable 'cnt' [-Wunused-variable]
    8 |  int cnt = 0;
      |      ^~~
vision.cpp:20:6: warning: variable 'c' set but not used [-Wunused-but-set-variable]
   20 |  int c;
      |      ^
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 292 KB WA in grader: Invalid index
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 292 KB WA in grader: Invalid index
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 292 KB WA in grader: Invalid index
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 292 KB WA in grader: Invalid index
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 296 KB WA in grader: Invalid index
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 292 KB WA in grader: Invalid index
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 968 KB WA in grader: Too many instructions
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 292 KB WA in grader: Invalid index
2 Halted 0 ms 0 KB -