結果

問題 No.329 全射
ユーザー 37zigen37zigen
提出日時 2016-10-20 21:26:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 538 ms / 2,000 ms
コード長 1,340 bytes
コンパイル時間 2,158 ms
コンパイル使用メモリ 81,088 KB
実行使用メモリ 55,744 KB
最終ジャッジ日時 2024-11-22 16:52:23
合計ジャッジ時間 16,378 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
52,176 KB
testcase_01 AC 158 ms
52,116 KB
testcase_02 AC 146 ms
51,184 KB
testcase_03 AC 161 ms
52,224 KB
testcase_04 AC 161 ms
51,620 KB
testcase_05 AC 151 ms
51,772 KB
testcase_06 AC 160 ms
52,164 KB
testcase_07 AC 163 ms
52,480 KB
testcase_08 AC 160 ms
52,176 KB
testcase_09 AC 157 ms
51,948 KB
testcase_10 AC 159 ms
51,976 KB
testcase_11 AC 158 ms
52,360 KB
testcase_12 AC 144 ms
51,280 KB
testcase_13 AC 502 ms
53,828 KB
testcase_14 AC 355 ms
51,984 KB
testcase_15 AC 456 ms
54,888 KB
testcase_16 AC 512 ms
55,744 KB
testcase_17 AC 457 ms
55,476 KB
testcase_18 AC 532 ms
54,652 KB
testcase_19 AC 538 ms
54,624 KB
testcase_20 AC 500 ms
52,464 KB
testcase_21 AC 511 ms
53,840 KB
testcase_22 AC 458 ms
55,048 KB
testcase_23 AC 385 ms
53,316 KB
testcase_24 AC 371 ms
55,548 KB
testcase_25 AC 426 ms
55,212 KB
testcase_26 AC 331 ms
51,532 KB
testcase_27 AC 243 ms
50,396 KB
testcase_28 AC 183 ms
52,012 KB
testcase_29 AC 239 ms
51,120 KB
testcase_30 AC 231 ms
51,528 KB
testcase_31 AC 156 ms
52,080 KB
testcase_32 AC 242 ms
51,156 KB
testcase_33 AC 260 ms
52,300 KB
testcase_34 AC 258 ms
52,280 KB
testcase_35 AC 270 ms
52,748 KB
testcase_36 AC 261 ms
52,316 KB
testcase_37 AC 240 ms
52,476 KB
testcase_38 AC 239 ms
52,272 KB
testcase_39 AC 265 ms
52,564 KB
testcase_40 AC 270 ms
52,456 KB
testcase_41 AC 240 ms
52,384 KB
testcase_42 AC 267 ms
52,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.*;

public class Main{
	public static void main(String[] args) {
		new Main().run();
	}

	void run() {
		solver();
	}

	long MOD = 1_000_000_000 + 7;

	void solver() {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int M = sc.nextInt();
		int[] w = new int[N];
		int[][] g = new int[N][N];
		for (int i = 0; i < N; i++) {
			w[i] = sc.nextInt();
			g[i][i] = Math.max(g[i][i], w[i]);
		}

		for (int i = 0; i < M; i++) {
			int src = sc.nextInt() - 1;
			int dst = sc.nextInt() - 1;
			g[src][dst] = Math.max(g[src][dst], Math.min(g[src][src], g[dst][dst]));
		}

		for (int i = 0; i < N; i++) {
			for (int j = 0; j < N; j++) {
				for (int k = 0; k < N; k++) {
					g[j][k] = Math.max(g[j][k], Math.min(g[j][i], g[i][k]));
				}
			}
		}

		long[][] dp = new long[1001][1001];
		for (int i = 0; i <= 1000; i++) {
			dp[i][1] = 1;
		}

		for (int i = 1; i <= 1000; i++) {
			for (int j = 2; j <= i; j++) {
				dp[i][j] = (dp[i - 1][j - 1] + dp[i - 1][j]) * j % MOD;
			}
		}

		long ans = 0;
		for (int i = 0; i < N; i++) {
			for (int j = 0; j < N; j++) {
				if (w[j] == g[i][j]) {
					ans += dp[w[i]][w[j]];
					if (ans >= MOD)
						ans -= MOD;
				}
			}
		}
		System.out.println(ans);
	}

	void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
}
0