結果
問題 | No.507 ゲーム大会(チーム決め) |
ユーザー | hiyokko2 |
提出日時 | 2017-08-04 10:35:47 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,383 bytes |
コンパイル時間 | 1,304 ms |
コンパイル使用メモリ | 162,208 KB |
実行使用メモリ | 5,860 KB |
最終ジャッジ日時 | 2024-10-11 20:45:07 |
合計ジャッジ時間 | 3,144 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | WA | - |
testcase_07 | AC | 70 ms
5,728 KB |
testcase_08 | WA | - |
testcase_09 | AC | 53 ms
5,724 KB |
testcase_10 | AC | 52 ms
5,860 KB |
testcase_11 | AC | 51 ms
5,732 KB |
testcase_12 | AC | 53 ms
5,848 KB |
testcase_13 | AC | 70 ms
5,856 KB |
testcase_14 | AC | 58 ms
5,848 KB |
testcase_15 | AC | 58 ms
5,728 KB |
testcase_16 | AC | 57 ms
5,728 KB |
testcase_17 | AC | 1 ms
5,248 KB |
testcase_18 | AC | 2 ms
5,248 KB |
testcase_19 | AC | 1 ms
5,248 KB |
testcase_20 | AC | 2 ms
5,248 KB |
ソースコード
#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]); 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]; sort(a, a + (N - 1)); a[N-1] = 3e9; //配列aの要素数はN個 int lb = 0, ub = N - 1; 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 - 1) { cout << -1 << endl; } else { cout << a[ub] << endl; } }