結果
問題 | No.794 チーム戦 (2) |
ユーザー | chocorusk |
提出日時 | 2019-02-22 21:44:42 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,524 bytes |
コンパイル時間 | 949 ms |
コンパイル使用メモリ | 98,276 KB |
実行使用メモリ | 8,192 KB |
最終ジャッジ日時 | 2024-05-04 01:00:39 |
合計ジャッジ時間 | 3,735 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 3 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | AC | 3 ms
5,376 KB |
testcase_05 | AC | 3 ms
5,376 KB |
testcase_06 | AC | 3 ms
5,376 KB |
testcase_07 | AC | 3 ms
5,376 KB |
testcase_08 | AC | 3 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | WA | - |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 102 ms
8,160 KB |
testcase_15 | AC | 102 ms
8,064 KB |
testcase_16 | AC | 102 ms
8,028 KB |
testcase_17 | AC | 102 ms
8,064 KB |
testcase_18 | AC | 101 ms
8,032 KB |
testcase_19 | AC | 102 ms
8,192 KB |
testcase_20 | AC | 101 ms
8,192 KB |
testcase_21 | AC | 101 ms
8,064 KB |
testcase_22 | AC | 62 ms
6,912 KB |
testcase_23 | AC | 56 ms
6,784 KB |
testcase_24 | AC | 45 ms
6,272 KB |
testcase_25 | AC | 38 ms
6,144 KB |
testcase_26 | AC | 42 ms
6,144 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 41 ms
8,032 KB |
testcase_30 | AC | 41 ms
8,192 KB |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
ソースコード
#include <cstdio> #include <cstring> #include <iostream> #include <string> #include <cmath> #include <bitset> #include <vector> #include <map> #include <set> #include <queue> #include <deque> #include <algorithm> #include <complex> #include <unordered_map> #include <unordered_set> #include <random> #include <cassert> using namespace std; typedef long long int ll; typedef pair<int, int> P; const ll MOD=1e9+7; ll powmod(ll a, ll k){ ll ap=a, ans=1; while(k){ if(k&1){ ans*=ap; ans%=MOD; } ap=ap*ap; ap%=MOD; k>>=1; } return ans; } ll inv(ll a){ return powmod(a, MOD-2); } ll f[200001], invf[200001]; void calc(int n){ f[0]=1; for(ll i=1; i<=n; i++) f[i]=f[i-1]*i%MOD; invf[n]=inv(f[n]); for(ll i=n-1; i>=0; i--) invf[i]=invf[i+1]*(i+1)%MOD; } ll comb(int x, int y){ return f[x]*invf[y]%MOD*invf[x-y]%MOD; } int main() { int n; ll k; cin>>n>>k; calc(n); ll a[200001]; for(int i=0; i<n; i++) cin>>a[i]; sort(a, a+n); if(a[n-1]>=k){ cout<<0<<endl; return 0; } int m=lower_bound(a, a+n, k/2)-a; if(n-m>n/2){ cout<<0<<endl; return 0; } int j=0; ll ans=f[2*m-n]*invf[m-n/2]%MOD*powmod(5e8+4, m-n/2)%MOD; for(int i=n-1; i>=m; i--){ while(j<m && a[j]+a[i]<=k) j++; if(j-(n-1-i)<=0){ cout<<0<<endl; return 0; } ans*=(ll)(j-(n-1-i)); ans%=MOD; } cout<<ans<<endl; return 0; }