結果
問題 | No.794 チーム戦 (2) |
ユーザー | nanae |
提出日時 | 2019-02-22 22:28:44 |
言語 | D (dmd 2.106.1) |
結果 |
AC
|
実行時間 | 112 ms / 1,500 ms |
コード長 | 2,664 bytes |
コンパイル時間 | 905 ms |
コンパイル使用メモリ | 116,656 KB |
実行使用メモリ | 13,524 KB |
最終ジャッジ日時 | 2024-06-13 04:11:09 |
合計ジャッジ時間 | 3,733 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,944 KB |
testcase_09 | AC | 1 ms
6,944 KB |
testcase_10 | AC | 1 ms
6,940 KB |
testcase_11 | AC | 1 ms
6,944 KB |
testcase_12 | AC | 1 ms
6,944 KB |
testcase_13 | AC | 1 ms
6,940 KB |
testcase_14 | AC | 112 ms
12,792 KB |
testcase_15 | AC | 97 ms
12,832 KB |
testcase_16 | AC | 98 ms
12,820 KB |
testcase_17 | AC | 99 ms
13,156 KB |
testcase_18 | AC | 92 ms
13,344 KB |
testcase_19 | AC | 87 ms
13,524 KB |
testcase_20 | AC | 88 ms
13,488 KB |
testcase_21 | AC | 90 ms
13,488 KB |
testcase_22 | AC | 58 ms
6,940 KB |
testcase_23 | AC | 52 ms
6,940 KB |
testcase_24 | AC | 38 ms
6,944 KB |
testcase_25 | AC | 32 ms
6,944 KB |
testcase_26 | AC | 37 ms
6,940 KB |
testcase_27 | AC | 40 ms
11,228 KB |
testcase_28 | AC | 42 ms
11,436 KB |
testcase_29 | AC | 38 ms
10,396 KB |
testcase_30 | AC | 36 ms
8,364 KB |
testcase_31 | AC | 35 ms
11,176 KB |
testcase_32 | AC | 35 ms
10,432 KB |
testcase_33 | AC | 38 ms
10,628 KB |
testcase_34 | AC | 38 ms
11,568 KB |
コンパイルメッセージ
Main.d(36): Deprecation: foreach: loop index implicitly converted from `size_t` to `int`
ソースコード
import std.stdio, std.string, std.conv; import std.range, std.algorithm, std.array, std.typecons, std.container; import std.math, std.numeric, core.bitop; enum inf3 = 1_001_001_001; enum inf6 = 1_001_001_001_001_001_001L; enum mod = 1_000_000_007L; void main() { int n, k; scan(n, k); auto a = readArr!(int); auto as = a.sort(); int m = 0; foreach (i ; 1 .. n) { if (as[i] + as[i - 1] <= k) { m = i; } } int[] usiro; foreach (i ; m + 1 .. n) { usiro ~= as[i]; } debug { writeln(usiro); } long ans = 1; foreach (int i, u ; usiro.retro.array) { int p = as.lowerBound(k - u + 1).length.to!int; p = max(p - i, 0); ans *= p; ans %= mod; } int r = m + 1 - (n - m - 1); if (r <= 0) { writeln(0); return; } auto mc = ModComb(n); int rr = r; while (rr > 0) { ans *= mc.c(rr, 2); ans %= mod; rr -= 2; } ans *= mc.finv(r / 2); ans %= mod; writeln(ans); } struct ModComb { int _N; long[] _fact, _factinv; long _mod; this(int n, long mod = 1_000_000_007L) { _N = n; _fact = new long[](_N + 1); _factinv = new long[](_N + 1); _mod = mod; _fact[0] = 1; foreach (i ; 1 .. _N + 1) { _fact[i] = (_fact[i-1] * i) % mod; } _factinv[_N] = _powmod(_fact[_N], mod - 2); foreach_reverse (i ; 0 .. _N) { _factinv[i] = (_factinv[i+1] * (i+1)) % mod; } } long c(int n, int k) { return f(n) * finv(n - k) % _mod * finv(k) % _mod; } long p(int n, int r) { return f(n) * finv(n - r) % _mod; } long f(int n) { return _fact[n]; } long finv(int n) { return _factinv[n]; } long _powmod(long x, long y) { return y > 0 ? _powmod(x, y>>1)^^2 % _mod * x^^(y & 1) % _mod : 1; } } void yes(bool b) {writeln(b ? "Yes" : "No");} void YES(bool b) {writeln(b ? "YES" : "NO");} T[] readArr(T)() {return readln.split.to!(T[]);} void scan(T...)(ref T args) { import std.stdio : readln; import std.algorithm : splitter; import std.conv : to; import std.range.primitives; auto line = readln().splitter(); foreach (ref arg; args) { arg = line.front.to!(typeof(arg)); line.popFront(); } assert(line.empty); } void fillAll(R, T)(ref R arr, T value) { static if (is(typeof(arr[] = value))) { arr[] = value; } else { foreach (ref e; arr) { fillAll(e, value); } } }