結果
問題 | No.507 ゲーム大会(チーム決め) |
ユーザー | hiyokko2 |
提出日時 | 2017-08-04 10:53:11 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,402 bytes |
コンパイル時間 | 1,659 ms |
コンパイル使用メモリ | 162,324 KB |
実行使用メモリ | 5,856 KB |
最終ジャッジ日時 | 2024-10-11 20:45:17 |
合計ジャッジ時間 | 2,692 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 71 ms
5,728 KB |
testcase_08 | AC | 69 ms
5,856 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 58 ms
5,848 KB |
testcase_16 | WA | - |
testcase_17 | AC | 2 ms
5,248 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
ソースコード
#include <bits/stdc++.h> #define FOR(i,bg,ed) for(ll i=(bg);i<(ed);i++) #define REP(i,n) FOR(i,0,n) #define MOD 1000000007 #define int long long using namespace std; typedef long long ll; const int INF = 1e9; int N, M; int kScore; int a[101010]; bool C(int idx) { vector<int> vi; int sum = kScore + a[idx] + 1; //cout << "a[idx] = " << a[idx] << endl; //cout << "sum = " << sum << endl; REP(i,N-1) if (i != idx) vi.push_back(a[i]); //cout << "size = " << vi.size() << endl; int num = 0; int f = 0, e = N - 3; while (f < e) { if (vi[f] + vi[e] < sum) { f++; continue; } if (vi[f] + vi[e] >= sum) { f++; e--; num++; continue; } } //cout << "num = " << num << endl; return num < M; } signed main() { cin >> N >> M; cin >> kScore; REP(i,N-1) cin >> a[i]; a[N-1] = 0; a[N] = 3e9; sort(a, a + (N + 1)); int lb = 0, ub = N; while (ub - lb > 1) { //cout << "ub = " << ub << " : lb = " << lb << endl; int mid = (lb + ub) / 2; if (C(mid)) { //cout << "true" << endl; ub = mid; } else { lb = mid; //cout << "false" << endl; } } if (ub == N) { cout << -1 << endl; } else { cout << a[ub] << endl; } }