結果
問題 | No.1797 永遠のグリッド |
ユーザー | tenten |
提出日時 | 2022-01-05 10:08:28 |
言語 | Java21 (openjdk 21) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 3,155 bytes |
コンパイル時間 | 2,005 ms |
コンパイル使用メモリ | 78,728 KB |
実行使用メモリ | 67,616 KB |
最終ジャッジ日時 | 2024-10-15 14:22:43 |
合計ジャッジ時間 | 10,123 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 47 ms
37,104 KB |
testcase_01 | AC | 48 ms
36,644 KB |
testcase_02 | AC | 47 ms
36,768 KB |
testcase_03 | AC | 47 ms
36,916 KB |
testcase_04 | AC | 46 ms
36,836 KB |
testcase_05 | AC | 46 ms
36,588 KB |
testcase_06 | AC | 46 ms
36,820 KB |
testcase_07 | AC | 46 ms
36,840 KB |
testcase_08 | AC | 46 ms
36,528 KB |
testcase_09 | AC | 80 ms
38,512 KB |
testcase_10 | AC | 47 ms
37,096 KB |
testcase_11 | AC | 48 ms
36,728 KB |
testcase_12 | AC | 63 ms
37,308 KB |
testcase_13 | AC | 57 ms
37,192 KB |
testcase_14 | AC | 50 ms
36,864 KB |
testcase_15 | AC | 48 ms
36,944 KB |
testcase_16 | AC | 48 ms
36,904 KB |
testcase_17 | AC | 465 ms
63,516 KB |
testcase_18 | AC | 1,880 ms
64,228 KB |
testcase_19 | AC | 48 ms
37,048 KB |
testcase_20 | AC | 1,861 ms
66,776 KB |
testcase_21 | AC | 476 ms
65,640 KB |
testcase_22 | AC | 157 ms
40,664 KB |
testcase_23 | AC | 1,921 ms
67,616 KB |
testcase_24 | AC | 165 ms
44,120 KB |
testcase_25 | AC | 542 ms
67,204 KB |
testcase_26 | TLE | - |
testcase_27 | AC | 48 ms
36,984 KB |
testcase_28 | AC | 47 ms
37,100 KB |
testcase_29 | AC | 483 ms
65,372 KB |
ソースコード
import java.io.*; import java.util.*; public class Main { static int k; static HashSet<Box> boxes = new HashSet<>(); public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); Box.height = sc.nextInt(); Box.width = sc.nextInt(); k = sc.nextInt(); makeBox(0, new int[Box.height * Box.width]); System.out.println(boxes.size()); } static void makeBox(int idx, int[] values) { if (idx == Box.height * Box.width) { Box b = new Box(values); if (b.getType() != k) { return; } boxes.add(b); return; } for (int i = 0; i < k; i++) { values[idx] = i; makeBox(idx + 1, values); } } static class Box { static int height; static int width; int[][] colors; int hash; int[] type = new int[3]; public Box(int[] arr) { colors = new int[height][width]; for (int i = 0; i < arr.length; i++) { colors[i / width][i % width] = arr[i]; hash += pow(100, arr[i]); type[arr[i]]++; } } static int pow(int x, int p) { if (p == 0) { return 1; } else { return x * pow(x, p - 1); } } public int hashCode() { return hash; } public int getType() { int count = 0; for (int x : type) { if (x > 0) { count++; } } return count; } public boolean equals(Object o) { Box b = (Box)o; for (int i = 0; i < height; i++) { for (int j = 0; j < width; j++) { if (equals(b, i, j)) { return true; } } } return false; } private boolean equals(Box b, int r, int c) { for (int i = 0; i < height; i++) { for (int j = 0; j < width; j++) { if (colors[(i + r) % height][(j + c) % width] != b.colors[i][j]) { return false; } } } return true; } } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public double nextDouble() throws Exception { return Double.parseDouble(next()); } public String next() throws Exception { if (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }