結果
問題 | No.507 ゲーム大会(チーム決め) |
ユーザー | WA_TLE |
提出日時 | 2017-04-21 22:58:04 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,031 bytes |
コンパイル時間 | 531 ms |
コンパイル使用メモリ | 51,072 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-20 06:31:56 |
合計ジャッジ時間 | 1,592 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 22 ms
5,376 KB |
testcase_08 | WA | - |
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 | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:20:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 20 | scanf("%d %d",&N,&M); | ~~~~~^~~~~~~~~~~~~~~ main.cpp:23:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 23 | scanf("%d",&me); | ~~~~~^~~~~~~~~~ main.cpp:25:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 25 | scanf("%d",&q); | ~~~~~^~~~~~~~~
ソースコード
#include<cstdio> #include<vector> #include<algorithm> #include<functional> //#define scanf scanf_s #define fir first #define sec second #define mp make_pair #define mt make_tuple #define pub push_back using namespace std; typedef long long int llint; const llint one = 1; const llint big = (one<<30); const int mod=1000000007; inline int gcd(int a,int b) { return b ? gcd(b, a % b) : a; } int main(void){ int N,M,me,q,gen=0,bmax,bmin,can; vector<int> po; scanf("%d %d",&N,&M); bmax=N-2; bmin=-1; scanf("%d",&me); for(int i=1;i<N;i++){ scanf("%d",&q); po.pub(q); } sort(po.rbegin(),po.rend()); //ペアの相手の順位を最大化 while(bmax-bmin>1){ gen=(bmax+bmin)/2; int dow=N-2,lead=0,tei=me+po[gen],ok=1; for(lead=0;lead<M;lead++){ for(;dow>=0;dow--){ if(dow==gen){continue;} if(po[dow]+po[lead]>tei){break;} if(dow<M){ok=0;break;} } if(ok==0){break;} } if(ok==1){bmax=gen;} else{bmin=gen;} } gen--; if(gen==-1){printf("-1\n");} else{printf("%d\n",po[gen]);} return 0; }