結果
問題 | No.507 ゲーム大会(チーム決め) |
ユーザー | どらら |
提出日時 | 2017-04-22 00:10:08 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,130 bytes |
コンパイル時間 | 1,685 ms |
コンパイル使用メモリ | 174,276 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-21 06:11:29 |
合計ジャッジ時間 | 3,040 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
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 | 53 ms
5,580 KB |
testcase_08 | AC | 96 ms
5,852 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,n) for(int i=(a); i<(int)(n); i++) #define rep(i,n) REP(i,0,n) #define FOR(it,c) for(__typeof((c).begin()) it=(c).begin(); it!=(c).end(); ++it) #define ALLOF(c) (c).begin(), (c).end() typedef long long ll; typedef unsigned long long ull; int N, M; bool C(ll x, int mid, vector<ll>& v){ ll m = x + v[mid]; int ret = 0; vector<ll> w; rep(i,v.size()){ if(i==mid) continue; w.push_back(v[i]); } sort(ALLOF(w)); int a=0, b=w.size()-1; while(a<b){ while(a<b && w[a]+w[b]<=m) a++; if(a<b && w[a]+w[b]>m){ ret++; a++; b--; } } return ret < M; } int main(){ cin >> N >> M; vector<ll> v; ll x; cin >> x; rep(i,N-1){ ll a; cin >> a; v.push_back(a); } if(N==2){ cout << v[0] << endl; return 0; } sort(ALLOF(v)); if(!C(x, 0, v)){ cout << -1 << endl; return 0; } ll ret = v[0]; int lb = 0, ub = v.size(); while(ub-lb>1){ int mid = (lb+ub)/2; if(!C(x, mid, v)) lb = mid; else ub = mid; } ret = min(ret, v[lb]); cout << ret << endl; return 0; }