結果
問題 | No.709 優勝可能性 |
ユーザー | ohreitetsu |
提出日時 | 2018-10-19 11:43:09 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 777 bytes |
コンパイル時間 | 826 ms |
コンパイル使用メモリ | 75,776 KB |
実行使用メモリ | 11,728 KB |
最終ジャッジ日時 | 2024-11-17 01:52:52 |
合計ジャッジ時間 | 16,486 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,464 KB |
testcase_01 | AC | 2 ms
10,496 KB |
testcase_02 | AC | 2 ms
10,624 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 816 ms
5,248 KB |
testcase_11 | AC | 366 ms
5,248 KB |
testcase_12 | AC | 1,637 ms
5,248 KB |
testcase_13 | AC | 397 ms
5,248 KB |
testcase_14 | AC | 368 ms
5,248 KB |
testcase_15 | AC | 487 ms
5,248 KB |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | AC | 2 ms
5,248 KB |
testcase_19 | AC | 2 ms
5,248 KB |
testcase_20 | AC | 549 ms
5,248 KB |
testcase_21 | AC | 548 ms
5,248 KB |
testcase_22 | AC | 2 ms
5,248 KB |
testcase_23 | AC | 2 ms
11,728 KB |
ソースコード
#include <iostream> #include <vector> using namespace std; typedef long long LL; int N,M; int GetWinNum(vector<vector<pair<LL,int>>> &R) { int num=0; vector<bool> PersonSet(N,false); for (int j=0;j<M;j++){ for (int i=0;i<R[j].size();i++){ if (PersonSet[R[j][i].second]==false){ PersonSet[R[j][i].second]=true; num++; } } } return num; } int main(int argc, char* argv[]) { cin>>N>>M; vector<vector<pair<LL,int>>> R(M); vector<LL> maxR(M,0); int i,j; LL r; for (i=0;i<N;i++){ for (j=0;j<M;j++){ cin>>r; if (r>maxR[j]){ if (R[j].size()>0){ R[j].clear(); } R[j].push_back(pair<LL,int>(r,i)); maxR[j]=r; }else if (r==maxR[j]){ R[j].push_back(pair<LL,int>(r,i)); } } cout<<GetWinNum(R)<<endl; } return 0; }