結果

問題 No.794 チーム戦 (2)
ユーザー koi_kotyakoi_kotya
提出日時 2019-02-22 22:51:21
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,774 bytes
コンパイル時間 1,628 ms
コンパイル使用メモリ 173,028 KB
実行使用メモリ 7,144 KB
最終ジャッジ日時 2024-05-04 07:36:56
合計ジャッジ時間 7,525 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
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 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

typedef long long ll;
ll const mod = 1e9+7;

#define p_ary(ary,a,b,i) do { cout << "["; for (int (i) = (a);(i) < (b);++(i)) cout << ary[(i)] << ((b)-1 == (i) ? "" : ", "); cout << "]\n"; } while(0)
#define p_map(map,it) do {cout << "{";for (auto (it) = map.begin();;++(it)) {if ((it) == map.end()) {cout << "}\n";break;}else cout << "" << (it)->first << "=>" << (it)->second << ", ";}}while(0)

const int MAX_N = 100010;
ll fact[MAX_N],fact_inv[MAX_N],inv[MAX_N];

ll pow_mod(ll a,ll b) {
    ll ret;
    if (b < 0) ret = pow_mod(a,mod+b-1);
    else if (b == 0) ret = 1;
    else if (b == 1) ret = a;
    else {
        ll c = pow_mod(a,b/2);
        if (b%2) ret = (c*c)%mod*a%mod;
        else ret = c*c%mod;
    }
    return ret;
}

void create_table(int n) {
    fact[0] = 1;fact[1] = 1;
    for (int i = 2;i <= n;++i) fact[i] = fact[i-1]*i%mod;
    fact_inv[n] = pow_mod(fact[n],mod-2);
    for (int i = n;i > 0;--i) fact_inv[i-1] = fact_inv[i]*i%mod;
    for (int i = 1;i <= n;++i) inv[i] = fact_inv[i]*fact[i-1]%mod;
}

int main() {
    int n,k;
    ll ans = 1;
    cin >> n >> k;
    vector<int> a(n),b(n,0);
    for (int i = 0;i < n;++i) cin >> a[i];
    sort(a.begin(),a.end());
    bool ok = true;
    for (int i = 0;i < n/2;++i) if (a[i]+a[n-i-1] > k) ok = false;
    if (!ok) ans = 0;
    int j = n-1;
    for (int i = 0;i < n;++i) {
        while (j >= 0 && a[i]+a[j] > k) j--;
        b[i] = max(n/2,j+1);
    }
    for (int i = 0;i < n-1;++i) if (a[i]+a[i+1] < k) j = (2*i+4-n)/2;
    for (int i = 0;i < n;++i) {
        ans *= b[n-1-i]-i;
        ans %= mod;
    }
    create_table(n);
    ans *= fact_inv[n/2];
    ans %= mod;
    ans *= pow_mod(2,-j);
    ans %= mod;
    cout << ans << endl;
    return 0;
}
0