結果
問題 | No.568 じゃんじゃん 落とす 委員会 |
ユーザー | ohreitetsu |
提出日時 | 2017-11-18 12:58:16 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 949 bytes |
コンパイル時間 | 528 ms |
コンパイル使用メモリ | 60,956 KB |
実行使用メモリ | 13,648 KB |
最終ジャッジ日時 | 2024-11-25 11:30:13 |
合計ジャッジ時間 | 18,027 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 68 ms
13,640 KB |
testcase_01 | AC | 63 ms
11,424 KB |
testcase_02 | AC | 42 ms
11,428 KB |
testcase_03 | AC | 40 ms
13,636 KB |
testcase_04 | AC | 43 ms
13,632 KB |
testcase_05 | AC | 2 ms
11,428 KB |
testcase_06 | AC | 41 ms
13,636 KB |
testcase_07 | AC | 40 ms
11,428 KB |
testcase_08 | AC | 39 ms
13,648 KB |
testcase_09 | AC | 2 ms
11,296 KB |
testcase_10 | AC | 2 ms
13,636 KB |
testcase_11 | AC | 42 ms
11,552 KB |
testcase_12 | AC | 64 ms
13,640 KB |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | AC | 59 ms
6,816 KB |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | AC | 65 ms
6,820 KB |
testcase_23 | AC | 3 ms
6,816 KB |
testcase_24 | AC | 2 ms
6,816 KB |
testcase_25 | AC | 2 ms
11,428 KB |
コンパイルメッセージ
main.cpp: In function ‘int main(int, char**)’: main.cpp:38:22: warning: overflow in conversion from ‘double’ to ‘int’ changes value from ‘1.0e+10’ to ‘2147483647’ [-Woverflow] 38 | int minN3Num=1e10; | ^~~~
ソースコード
#include <iostream> #include <vector> using namespace std; int main(int argc, char* argv[]) { int N,M; cin>>N>>M; vector<int> x(N),a(N),b(N); vector<int> xTmp(N); int i; int maxA=0; int maxB=0; int n2Num=0; int n3Num=0; for (i=0;i<N;i++){ cin>>x[i]>>a[i]>>b[i]; if (maxA<a[i]){ maxA=a[i]; } if (maxB<b[i]){ maxB=b[i]; } if (x[i]>=2){ n2Num++; } if (x[i]>=3){ n3Num++; } } if (n2Num>=M){ cout<<n3Num<<endl; return 0; } n2Num=0; n3Num=0; int SA=0; int SB=0; int minN3Num=1e10; for (int sa=0;sa<=maxA+1;sa++){ for (int sb=maxB+1;sb>=0;sb--){ n2Num=0; n3Num=0; for (i=0;i<N;i++){ xTmp[i]=x[i]; if (a[i]>=sa){ xTmp[i]++; } if (b[i]>=sb){ xTmp[i]++; } if (xTmp[i]>=2){ n2Num++; } if (xTmp[i]>=3){ n3Num++; } } if (n2Num>=M){ if (minN3Num>n3Num){ minN3Num=n3Num; } } } } cout<<minN3Num<<endl; return 0; }