Submission #262848

#TimeUsernameProblemLanguageResultExecution timeMemory
262848idk321Vision Program (IOI19_vision)Java
33 / 100
153 ms13728 KiB
import java.util.Arrays; public class vision { public void construct_network(int H, int W, int K) { int commands = 0; for (int i = 0; i < H; i++) { for (int j = 0; j < W; j++) { if (j + K < W) { int[] command = {i * W + j, i * W + j + K}; grader.add_and(command); commands++; } for (int k = i + 1; k < H; k++) { int remaining = K - k + i; if (remaining > 0) { if (j + remaining < W) { int[] command = {i * W + j, k * W + j + remaining}; grader.add_and(command); commands++; } if (j - remaining >= 0) { int[] command = {i * W + j, k * W + j - remaining}; //System.out.println(Arrays.toString(command)); grader.add_and(command); commands++; } } else if (remaining == 0) { int[] command = {i * W + j, k * W + j}; grader.add_and(command); commands++; } } } } int[] command = new int[commands]; for (int i = H * W, j = 0; j < commands; i++, j++) command[j] = i; grader.add_or(command); } }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...