結果
問題 | No.507 ゲーム大会(チーム決め) |
ユーザー | niimi |
提出日時 | 2018-10-08 01:44:26 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,125 bytes |
コンパイル時間 | 1,458 ms |
コンパイル使用メモリ | 162,492 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-12 14:26:05 |
合計ジャッジ時間 | 3,515 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 1 ms
6,816 KB |
testcase_04 | WA | - |
testcase_05 | AC | 1 ms
6,816 KB |
testcase_06 | WA | - |
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 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 2 ms
6,816 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef unsigned long long ll; typedef std::pair<int, int> P; #define frep(i, a, b) for(int i = (a); i < (b); i++) #define rep(i, n) frep(i, 0, (n)) #define rrep(i, n) for(int i = (n - 1); i >= 0; i--) #define all(i, x) for(typeof(x.begin()) i = x.begin(); i != x.end(); i++) #define pb push_back const int dx[4] = {1, 0, -1, 0}, dy[4] = {0, 1, 0, -1}; const int MAX = 10010; const int INF = 1e9; const int MOD = 1000000007; const string END = "\n"; void solve(){ int n, m, k, a[MAX], ans; cin >> n >> m; n -= 1; cin >> k; rep(i, n) cin >> a[i]; sort(a, a + n); int left = 0, right = n; while(right - left > 1){ int mid = (right + left) / 2; int tmp = a[mid] + k; int ll = 0, rr = n, cnt = 0; while(ll < rr){ if(ll == mid) ll += 1; else if(rr == mid) rr -= 1; else if(a[rr] + a[ll] > tmp) ll += 1, rr -= 1, cnt += 1; else ll += 1; } if(cnt < m) right = mid; else left = mid; } if(right >= n){ ans = -1; }else{ ans = a[right]; } cout << ans << END; } int main(){ cin.tie(0); ios::sync_with_stdio(false); solve(); return 0; }