結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 160 ms
52,224 KB
testcase_01 AC 158 ms
52,012 KB
testcase_02 AC 160 ms
52,128 KB
testcase_03 AC 159 ms
52,060 KB
testcase_04 AC 157 ms
52,404 KB
testcase_05 AC 158 ms
52,296 KB
testcase_06 AC 157 ms
52,248 KB
testcase_07 AC 157 ms
51,976 KB
testcase_08 AC 157 ms
52,180 KB
testcase_09 AC 162 ms
52,216 KB
testcase_10 AC 158 ms
52,432 KB
testcase_11 AC 145 ms
51,744 KB
testcase_12 AC 160 ms
52,116 KB
testcase_13 AC 477 ms
52,740 KB
testcase_14 AC 350 ms
51,608 KB
testcase_15 AC 454 ms
54,252 KB
testcase_16 AC 502 ms
55,424 KB
testcase_17 AC 477 ms
55,600 KB
testcase_18 AC 564 ms
54,624 KB
testcase_19 AC 547 ms
54,660 KB
testcase_20 AC 532 ms
52,316 KB
testcase_21 AC 480 ms
54,020 KB
testcase_22 AC 450 ms
55,212 KB
testcase_23 AC 369 ms
53,092 KB
testcase_24 AC 345 ms
54,292 KB
testcase_25 AC 455 ms
55,380 KB
testcase_26 AC 347 ms
51,648 KB
testcase_27 AC 250 ms
50,464 KB
testcase_28 AC 187 ms
52,216 KB
testcase_29 AC 244 ms
51,372 KB
testcase_30 AC 239 ms
51,992 KB
testcase_31 AC 162 ms
52,248 KB
testcase_32 AC 244 ms
50,980 KB
testcase_33 AC 271 ms
52,608 KB
testcase_34 AC 244 ms
52,440 KB
testcase_35 AC 262 ms
52,636 KB
testcase_36 AC 252 ms
52,420 KB
testcase_37 AC 250 ms
52,620 KB
testcase_38 AC 251 ms
52,372 KB
testcase_39 AC 257 ms
52,540 KB
testcase_40 AC 275 ms
52,300 KB
testcase_41 AC 254 ms
52,232 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