답안 #778512

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
778512 2023-07-10T11:35:28 Z Josia Vision Program (IOI19_vision) C++17
0 / 100
2 ms 976 KB
#include "vision.h"

#include<bits/stdc++.h>

using namespace std;


int convert(pair<int, int> cords, int H, int W) {
	return cords.first*W + cords.second;
}


void construct_network(int H, int W, int K) {
	vector<int> finalComp;

	for (int i=0; i<H; i++) {
		for (int j = 0; j<W; j++) {
			vector<int> prs;
			for (int k = max(0, i-K); k<min(H, i+K+1); k++) {
				for (int l = j; l<min(W, j+K+1); l++) {
					if (abs(i-k) + abs(j-l) == K) {
						prs.push_back(convert({k,l}, H, W));
					}
				}
			}

			finalComp.push_back(add_and({convert({i, j}, H, W), add_or(prs)}));
		}
	}

	add_or(finalComp);

}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB WA in grader: Instruction with no inputs
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB WA in grader: Instruction with no inputs
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB WA in grader: Instruction with no inputs
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB WA in grader: Instruction with no inputs
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB WA in grader: Instruction with no inputs
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 212 KB Output is correct
2 Incorrect 1 ms 212 KB WA in grader: Instruction with no inputs
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 976 KB WA in grader: Too many instructions
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB WA in grader: Instruction with no inputs
2 Halted 0 ms 0 KB -