結果
問題 |
No.120 傾向と対策:門松列(その1)
|
ユーザー |
![]() |
提出日時 | 2015-03-05 21:16:09 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 861 bytes |
コンパイル時間 | 362 ms |
コンパイル使用メモリ | 37,888 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-24 08:19:35 |
合計ジャッジ時間 | 976 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | WA * 4 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:9:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 9 | scanf("%d", &T); | ~~~~~^~~~~~~~~~ main.cpp:13:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 13 | scanf("%d", &N); | ~~~~~^~~~~~~~~~ main.cpp:17:18: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 17 | scanf("%d", L+i); | ~~~~~^~~~~~~~~~~
ソースコード
#include <cstdio> #include <cstring> #include <algorithm> bool used[100]; int main(){ int T; scanf("%d", &T); while(T--){ int N; scanf("%d", &N); int L[100]; for(int i=0;i<N;i++){ scanf("%d", L+i); } std::sort(L, L+N); int res = 0; for(int i=1;i<=N/3;i++){ memset(used, 0, sizeof(used)); bool can = true; for(int j=0;j<i;j++){ int k, l; for(k=i;k<N&&(L[k]<=L[j]||used[k]);k++); if(k == N){can = false; break;} used[k] = true; for(l=k+1;l<N&&(L[l]<=L[k]||used[l]);l++); if(l == N){can = false; break;} used[l] = true; } if(can){res = i;} } printf("%d\n", res); } }