답안 #1013075

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1013075 2024-07-03T07:02:23 Z HappyCapybara Vision Program (IOI19_vision) C++17
0 / 100
0 ms 348 KB
#include "vision.h"
#include<bits/stdc++.h>
using namespace std;

void construct_network(int H, int W, int K){
	vector<int> w;
	for (int i=0; i<0; i++){
		for (int j=0; j<0; j++){
			vector<int> v;
			for (int k=-K; k<=K; k++){
				if (i+k < 0 || i+k >= H) continue;
				if (j+(K-abs(k)) < W) v.push_back((i+k)*W + j+(K-abs(k)));
				if (abs(k) != K && j-(K-abs(k)) >= 0) v.push_back((i+k)*W + j-(K-abs(k)));
			}
			if (v.size() == 0) continue;
			add_or(v);
			if (w.size() == 0) w.push_back(H*W+1);
			else w.push_back(w[w.size()-1]+2);
			add_and({w[w.size()-1]-1, i*W+j});
		}
	}
	add_or(w);
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 344 KB WA in grader: Instruction with no inputs
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 344 KB WA in grader: Instruction with no inputs
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 344 KB WA in grader: Instruction with no inputs
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 344 KB WA in grader: Instruction with no inputs
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB WA in grader: Instruction with no inputs
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB WA in grader: Instruction with no inputs
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 348 KB WA in grader: Instruction with no inputs
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 344 KB WA in grader: Instruction with no inputs
2 Halted 0 ms 0 KB -