結果
問題 | No.329 全射 |
ユーザー | nebukuro09 |
提出日時 | 2018-04-17 11:52:55 |
言語 | D (dmd 2.106.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,333 bytes |
コンパイル時間 | 706 ms |
コンパイル使用メモリ | 118,720 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-13 00:33:08 |
合計ジャッジ時間 | 6,402 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
ソースコード
import std.stdio, std.array, std.string, std.conv, std.algorithm; import std.typecons, std.range, std.random, std.math, std.container; import std.numeric, std.bigint, core.bitop, std.bitmanip; void main() { immutable long MOD = 10^^9 + 7; auto s = readln('\r').split.map!(to!int); auto N = s[0]; auto M = s[1]; auto W = readln('\r').split.map!(to!int).array; auto G = new int[][](N); foreach (_; 0..M) { s = readln('\r').split.map!(to!int); G[s[0]-1] ~= s[1]-1; } auto D = new int[][](N, N); foreach (i; 0..N) foreach (j; 0..N) D[i][j] = i == j ? W[i] : -1; foreach (i; 0..N) foreach (j; G[i]) D[i][j] = min(W[i], W[j]); foreach (i; 0..N) foreach (j; 0..N) foreach (k; 0..N) D[j][k] = max(D[j][k], min(D[j][i], D[i][k])); auto ok = new bool[][](N, N); foreach (i; 0..N) foreach (j; 0..N) ok[i][j] = D[i][j] >= W[j]; immutable int MAX = 1001; auto modinv = new long[](MAX); modinv[0] = modinv[1] = 1; foreach(i; 2..MAX) { modinv[i] = modinv[MOD % i] * (MOD - MOD / i) % MOD; } auto f_mod = new long[](MAX); auto f_modinv = new long[](MAX); f_mod[0] = f_mod[1] = 1; f_modinv[0] = f_modinv[1] = 1; foreach(i; 2..MAX) { f_mod[i] = (i * f_mod[i-1]) % MOD; f_modinv[i] = (modinv[i] * f_modinv[i-1]) % MOD; } long comb(int n, int k) { return f_mod[n] * f_modinv[n-k] % MOD * f_modinv[k] % MOD; } long ans = 0; auto mem = new long[][](1001, 1001); foreach (i; 0..1001) mem[i].fill(-1); foreach (i; 0..N) { foreach (j; 0..N) { if (!ok[i][j]) continue; if (mem[W[i]][W[j]] == -1) { long tmp2 = 0; foreach (k; 1..W[j]+1) { long tmp = (W[j] - k) % 2 == 0 ? 1 : -1; tmp = tmp * powmod(k, W[i], MOD) % MOD; tmp = tmp * comb(W[j], k) % MOD; tmp2 = ((tmp2 + tmp) % MOD + MOD) % MOD; } mem[W[i]][W[j]] = tmp2; } ans = (ans + mem[W[i]][W[j]]) % MOD; } } ans.writeln; } long powmod(long a, long x, long m) { long ret = 1; while (x) { if (x % 2) ret = ret * a % m; a = a * a % m; x /= 2; } return ret; }