結果
問題 | No.507 ゲーム大会(チーム決め) |
ユーザー | pekempey |
提出日時 | 2017-04-21 22:57:57 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 699 bytes |
コンパイル時間 | 777 ms |
コンパイル使用メモリ | 75,824 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-20 06:31:40 |
合計ジャッジ時間 | 2,019 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 53 ms
6,944 KB |
testcase_08 | AC | 52 ms
6,940 KB |
testcase_09 | AC | 35 ms
6,944 KB |
testcase_10 | AC | 33 ms
6,940 KB |
testcase_11 | AC | 33 ms
6,944 KB |
testcase_12 | AC | 34 ms
6,940 KB |
testcase_13 | AC | 52 ms
6,944 KB |
testcase_14 | AC | 40 ms
6,940 KB |
testcase_15 | AC | 38 ms
6,940 KB |
testcase_16 | AC | 39 ms
6,940 KB |
testcase_17 | AC | 2 ms
6,940 KB |
testcase_18 | AC | 2 ms
6,940 KB |
testcase_19 | AC | 2 ms
6,940 KB |
testcase_20 | WA | - |
ソースコード
#include <iostream> #include <cstdio> #include <vector> #include <algorithm> int main() { int n, m; std::cin >> n >> m; std::vector<int> a(n); for (int i = 0; i < n; i++) { std::cin >> a[i]; } std::sort(a.begin() + 1, a.end()); int ok = n; int ng = 0; while (ok - ng > 1) { int mid = (ok + ng) / 2; int j = n - 1; int cnt = 0; for (int i = 1; i < n; i++) { if (i == mid) { i++; continue; } if (j == mid) { j--; } if (i < j && a[i] + a[j] > a[0] + a[mid]) { j--; cnt++; } } if (cnt <= m - 1) { ok = mid; } else { ng = mid; } } if (ok == n) { std::cout << -1 << std::endl; } else { std::cout << a[ok] << std::endl; } }