結果
問題 | No.507 ゲーム大会(チーム決め) |
ユーザー | dohatsutsu |
提出日時 | 2017-04-21 23:14:17 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 721 bytes |
コンパイル時間 | 3,078 ms |
コンパイル使用メモリ | 161,204 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-20 17:40:25 |
合計ジャッジ時間 | 3,478 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 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 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 56 ms
6,940 KB |
testcase_08 | AC | 56 ms
6,944 KB |
testcase_09 | AC | 36 ms
6,940 KB |
testcase_10 | AC | 37 ms
6,940 KB |
testcase_11 | AC | 39 ms
6,944 KB |
testcase_12 | AC | 35 ms
6,940 KB |
testcase_13 | AC | 63 ms
6,940 KB |
testcase_14 | AC | 49 ms
6,940 KB |
testcase_15 | AC | 51 ms
6,940 KB |
testcase_16 | AC | 50 ms
6,940 KB |
testcase_17 | AC | 2 ms
6,940 KB |
testcase_18 | AC | 2 ms
6,940 KB |
testcase_19 | AC | 1 ms
6,940 KB |
testcase_20 | WA | - |
ソースコード
#include<bits/stdc++.h> using namespace std; int N,M,K; int a[100000]; bool check(int x){ int sum=K+a[x]; int cnt=0; int h=0; if(h==x)h++; for(int i=N-1;i>=0;i--){ if(i==x)continue; while(h<N && a[i]+a[h]<=sum){ h++; if(h==x)h++; } if(h<i&&sum<a[i]+a[h]){ cnt++; // cout<<i<<' '<<h<<endl; h++; } } return ( cnt<M ); } int main(){ cin>>N>>M>>K; N--; for(int i=0;i<N;i++){ cin>>a[i]; } sort(a,a+N); int left=0,right=N-1,mid; while(left<right){ mid=(left+right)/2; if(check(mid))right=mid; else left=mid+1; } if( check(N-1) ==false ) cout<<-1<<endl; else cout<<a[left]<<endl; return 0; }