結果

問題 No.498 ワープクリスタル (給料日編)
ユーザー 37zigen37zigen
提出日時 2016-07-13 01:08:52
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,501 bytes
コンパイル時間 1,919 ms
コンパイル使用メモリ 79,008 KB
実行使用メモリ 188,364 KB
最終ジャッジ日時 2024-04-23 18:58:55
合計ジャッジ時間 16,959 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
53,980 KB
testcase_01 AC 121 ms
54,192 KB
testcase_02 AC 121 ms
54,056 KB
testcase_03 AC 108 ms
53,996 KB
testcase_04 AC 1,007 ms
188,068 KB
testcase_05 AC 111 ms
53,040 KB
testcase_06 AC 1,019 ms
188,040 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 1,034 ms
188,352 KB
testcase_10 AC 117 ms
53,984 KB
testcase_11 AC 356 ms
188,220 KB
testcase_12 AC 121 ms
53,876 KB
testcase_13 AC 255 ms
188,028 KB
testcase_14 AC 128 ms
54,320 KB
testcase_15 AC 162 ms
60,848 KB
testcase_16 AC 132 ms
54,060 KB
testcase_17 AC 148 ms
61,300 KB
testcase_18 AC 1,022 ms
188,032 KB
testcase_19 AC 1,014 ms
188,364 KB
testcase_20 AC 1,022 ms
187,748 KB
testcase_21 AC 1,013 ms
187,984 KB
testcase_22 AC 1,003 ms
188,176 KB
testcase_23 AC 1,008 ms
188,340 KB
testcase_24 AC 984 ms
188,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		solver();
		// sample();
	}

	static void sample() {
		System.out.println(1 + " " + 1 + " " + 5);
		for (int i = 0; i < 5; i++) {
			System.out.println(1 + " " + 1 + " " + 15);
		}
	}

	static long MOD = 1_000_000_000 + 7;

	static void solver() {
		Scanner sc = new Scanner(System.in);
		long gx = sc.nextLong();
		long gy = sc.nextLong();
		int k = sc.nextInt();// the number of crystals

		long[] x = new long[k];
		long[] y = new long[k];
		long[] n = new long[k];
		for (int i = 0; i < k; i++) {
			x[i] = sc.nextLong();
			y[i] = sc.nextLong();
			n[i] = sc.nextInt();
		}

		memo = new long[(int) ((Math.pow(16, k)) + 1) * 16];
		Arrays.fill(memo, -1);
		long ans = dp(0, 0, x, y, n, gx, gy);
		System.out.println(ans);
	}

	static long[] memo;

	static long dp(long curx, long cury, long[] x, long[] y, long[] n, long gx, long gy) {
		int idx = 0;
		for (int i = 0; i < n.length; i++) {
			idx += Math.pow(16, i) * n[i];
		}
		if (idx == 0)
			return 0;
		if (memo[idx] != -1) {
			return memo[idx];
		} else {
			long sum = 0;
			for (int i = 0; i < n.length; i++) {
				if (n[i] > 0) {
					long[] d = Arrays.copyOf(n, n.length);
					d[i]--;
					long nx = curx + x[i];
					long ny = cury + y[i];
					if (gx == nx && gy == ny) {
						sum += 1;

					}
					sum += dp(nx, ny, x, y, d, gx, gy);
					sum %= MOD;
				}
			}
			memo[idx] = sum % MOD;
			return sum;
		}
	}
}
0