結果
問題 | No.507 ゲーム大会(チーム決め) |
ユーザー | はまやんはまやん |
提出日時 | 2017-04-21 23:12:44 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,123 bytes |
コンパイル時間 | 1,555 ms |
コンパイル使用メモリ | 168,856 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-20 15:16:27 |
合計ジャッジ時間 | 3,107 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 26 ms
5,376 KB |
testcase_08 | AC | 25 ms
5,376 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
ソースコード
#include<bits/stdc++.h> using namespace std; #define rep(i,a,b) for(int i=a;i<b;i++) #define INF INT_MAX/2 int N, M, _A[101010], A0; int *A; //----------------------------------------------------------------------------------- bool chk(int x) { int idx = lower_bound(A, A + N, x) - A; int P = A0 + A[idx]; int cnt = 0; int L = 0, R = N - 1; while (L < R) { if (L == idx) L++; else if (R == idx) R--; else if (A[L] + A[R] <= P) L++; else { cnt++; L++; R--; } } return cnt < M; } //----------------------------------------------------------------------------------- int main() { cin >> N >> M; rep(i, 0, N) scanf("%d", &_A[i]); A0 = _A[0]; A = _A + 1; N--; sort(A, A + N); int lo = 0, hi = N; while (lo + 1 != hi) { int md = (lo + hi) / 2; if (chk(A[md])) hi = md; else lo = md; } if (chk(A[0])) { printf("%d\n", A[0]); return 0; } if (hi == N) hi = -1; printf("%d\n", hi); //cout << chk(1) << endl; //cout << chk(2) << endl; }