結果
問題 | No.507 ゲーム大会(チーム決め) |
ユーザー | KiYugadgeter |
提出日時 | 2019-07-28 01:22:31 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,167 bytes |
コンパイル時間 | 1,839 ms |
コンパイル使用メモリ | 174,940 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-02 14:54:46 |
合計ジャッジ時間 | 6,408 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; int n, m, k, lb, ub; std::vector<ll> vec; bool check(int mid) { ll score = k + vec[mid]; std::vector<ll> vec2; vec2 = vec; vec2[mid] = -1; std::vector<ll> points; for (int j = 1; j <= (vec2.size()-1)/2; j++) { points.push_back(vec2[j*2] + vec2[j*2-1]); } points.push_back(score); sort(points.begin(), points.end()); auto it = upper_bound(points.begin(), points.end(), score); ll dis = distance(points.end(), it); if (dis < m) { return true; } return false; } int main() { bool exist_ans = false; vec.assign(n-1, 0); cin >> n >> m; cin >> k; for (int i = 0; i < n - 1; i++) { cin >> vec[i]; } sort(vec.begin(), vec.end()); lb = 0; ub = vec.size()-1; while (ub - lb > 1) { int mid = (ub + lb) / 2; if (check(mid)) { exist_ans = true; ub = mid; } else { lb = mid; } } if (exist_ans) { std::cout << vec[lb] + k << std::endl; return 0; } std::cout << -1 << std::endl; }