結果

問題 No.794 チーム戦 (2)
ユーザー merom686merom686
提出日時 2019-02-22 22:09:48
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 90 ms / 1,500 ms
コード長 1,141 bytes
コンパイル時間 802 ms
コンパイル使用メモリ 78,804 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-08-16 19:05:02
合計ジャッジ時間 3,568 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 1 ms
4,384 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 2 ms
4,384 KB
testcase_05 AC 1 ms
4,384 KB
testcase_06 AC 1 ms
4,384 KB
testcase_07 AC 1 ms
4,380 KB
testcase_08 AC 1 ms
4,384 KB
testcase_09 AC 1 ms
4,380 KB
testcase_10 AC 2 ms
4,380 KB
testcase_11 AC 2 ms
4,380 KB
testcase_12 AC 1 ms
4,380 KB
testcase_13 AC 1 ms
4,380 KB
testcase_14 AC 90 ms
4,384 KB
testcase_15 AC 90 ms
4,380 KB
testcase_16 AC 90 ms
4,380 KB
testcase_17 AC 88 ms
4,384 KB
testcase_18 AC 89 ms
4,380 KB
testcase_19 AC 89 ms
4,380 KB
testcase_20 AC 89 ms
4,380 KB
testcase_21 AC 88 ms
4,384 KB
testcase_22 AC 54 ms
4,380 KB
testcase_23 AC 49 ms
4,384 KB
testcase_24 AC 38 ms
4,380 KB
testcase_25 AC 32 ms
4,380 KB
testcase_26 AC 36 ms
4,384 KB
testcase_27 AC 34 ms
4,380 KB
testcase_28 AC 34 ms
4,380 KB
testcase_29 AC 33 ms
4,384 KB
testcase_30 AC 33 ms
4,380 KB
testcase_31 AC 33 ms
4,380 KB
testcase_32 AC 33 ms
4,380 KB
testcase_33 AC 34 ms
4,384 KB
testcase_34 AC 33 ms
4,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <cstdio>
#include <cstring>
#include <cmath>
using namespace std;
using ll = long long;

constexpr int P = 1000000007;

int main() {
    int n, k;
    cin >> n >> k;

    vector<int> a(n);
    for (int i = 0; i < n; i++) {
        cin >> a[i];
    }
    sort(a.begin(), a.end());

    int i1 = n;
    for (int i = 0; i < n; i++) {
        if (a[i] * 2 > k) {
            i1 = i;
            break;
        }
    }

    //自分より小さいやつとしかペアになれない領域
    ll r = 1;
    int m = 0;
    for (int i = n - 1; i >= i1; i--) {
        int j1 = n;//初めて超えたやつ
        for (int j = m; j < n; j++) {
            if (a[i] + a[j] > k) {
                j1 = j;
                break;
            }
        }
        m = j1;
        j1 -= n - 1 - i;
        if (j1 <= 0) {
            r = 0;
            break;
        }
        r = r * j1 % P;
    }
    int i2 = i1 - (n - i1);
    if (i2 < 0) r = 0;
    for (int i = 0; i < i2; i += 2) {
        r = r * (i2 - 1 - i) % P;
    }

    cout << r << endl;

    return 0;
}
0