結果
問題 | No.54 Happy Hallowe'en |
ユーザー | ciel |
提出日時 | 2014-11-17 01:41:49 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 555 bytes |
コンパイル時間 | 511 ms |
コンパイル使用メモリ | 46,336 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-10 09:18:48 |
合計ジャッジ時間 | 1,225 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 6 ms
6,944 KB |
testcase_05 | AC | 9 ms
6,940 KB |
testcase_06 | AC | 13 ms
6,940 KB |
testcase_07 | AC | 18 ms
6,944 KB |
testcase_08 | AC | 23 ms
6,944 KB |
testcase_09 | AC | 30 ms
6,940 KB |
testcase_10 | AC | 1 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | AC | 28 ms
6,940 KB |
testcase_13 | AC | 29 ms
6,944 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 1 ms
6,944 KB |
testcase_16 | WA | - |
testcase_17 | AC | 2 ms
6,940 KB |
testcase_18 | AC | 2 ms
6,944 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:6:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 6 | scanf("%d",&n); | ~~~~~^~~~~~~~~ main.cpp:9:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 9 | scanf("%d%d",&v[i].first,&v[i].second); | ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <vector> #include <algorithm> #include <cstdio> int main(){ int n,vmax=0,tmax=0; scanf("%d",&n); std::vector<std::pair<int,int> >v(n); for(int i=0;i<n;i++){ scanf("%d%d",&v[i].first,&v[i].second); if(vmax<v[i].first)vmax=v[i].first; if(tmax<v[i].second)tmax=v[i].second; } std::sort(v.begin(),v.end()); std::vector<int>bag(tmax+vmax+1); bag[0]=1; for(int i=0;i<n;i++){ for(int j=v[i].second-1;j>=0;j--)bag[j+v[i].first]|=bag[j]; } for(int i=tmax+vmax;i>=0;i--)if(bag[i]){ printf("%d\n",i); break; } }