結果

問題 No.506 限られたジャパリまん
ユーザー tentententen
提出日時 2020-12-25 09:23:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 261 ms / 2,000 ms
コード長 1,970 bytes
コンパイル時間 2,375 ms
コンパイル使用メモリ 79,516 KB
実行使用メモリ 46,808 KB
最終ジャッジ日時 2024-06-28 04:25:17
合計ジャッジ時間 7,501 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,168 KB
testcase_01 AC 129 ms
41,312 KB
testcase_02 AC 129 ms
41,200 KB
testcase_03 AC 129 ms
40,884 KB
testcase_04 AC 147 ms
41,660 KB
testcase_05 AC 140 ms
41,276 KB
testcase_06 AC 121 ms
40,336 KB
testcase_07 AC 138 ms
41,628 KB
testcase_08 AC 261 ms
46,808 KB
testcase_09 AC 194 ms
46,552 KB
testcase_10 AC 146 ms
41,420 KB
testcase_11 AC 256 ms
46,760 KB
testcase_12 AC 245 ms
46,788 KB
testcase_13 AC 128 ms
41,120 KB
testcase_14 AC 137 ms
41,844 KB
testcase_15 AC 133 ms
41,408 KB
testcase_16 AC 212 ms
46,524 KB
testcase_17 AC 134 ms
40,772 KB
testcase_18 AC 148 ms
41,320 KB
testcase_19 AC 183 ms
44,048 KB
testcase_20 AC 184 ms
45,792 KB
testcase_21 AC 176 ms
42,676 KB
testcase_22 AC 192 ms
46,264 KB
testcase_23 AC 180 ms
45,752 KB
testcase_24 AC 156 ms
41,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int h = sc.nextInt();
        int w = sc.nextInt();
        int k = sc.nextInt();
        int p = sc.nextInt();
        HashMap<Integer, Integer> places = new HashMap<>();
        String[] names = new String[k];
        for (int i = 0; i < k; i++) {
            places.put(sc.nextInt() * 100 + sc.nextInt(), i);
            names[i] = sc.next();
        }
        long max = 0;
        int key = 0;
        long[][] counts = new long[h + 1][w + 1];
        for (int i = 0; i < (1 << k); i++) {
            if (getPop(i) != p) {
                continue;
            }
            counts[0][0] = 1;
            for (int a = 0; a <= h; a++) {
                for (int b = 0; b <= w; b++) {
                    if (a == 0 && b == 0) {
                        continue;
                    }
                    counts[a][b] = 0;
                    if (places.containsKey(a * 100 + b) && ((1 << places.get(a * 100 + b)) & i) == 0) {
                        continue;
                    }
                    if (a > 0) {
                        counts[a][b] += counts[a - 1][b];
                    }
                    if (b > 0) {
                        counts[a][b] += counts[a][b - 1];
                    }
                }
            }
            if (max < counts[h][w]) {
                max = counts[h][w];
                key = i;
            }
        }
        StringBuilder sb = new StringBuilder();
        sb.append(max % 1000000007).append("\n");
        for (int i = 0; i < k; i++) {
            if (key % 2 == 1) {
                sb.append(names[i]).append("\n");
            }
            key /= 2;
        }
        System.out.print(sb);
    }
    
    static int getPop(int x) {
        int pop = 0;
        while (x > 0) {
            pop += x % 2;
            x /= 2;
        }
        return pop;
    }
}
0