結果
問題 | No.709 優勝可能性 |
ユーザー | ohreitetsu |
提出日時 | 2018-10-17 22:09:18 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 974 bytes |
コンパイル時間 | 797 ms |
コンパイル使用メモリ | 86,732 KB |
実行使用メモリ | 13,640 KB |
最終ジャッジ日時 | 2024-10-12 18:56:15 |
合計ジャッジ時間 | 7,759 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,640 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 1 ms
6,820 KB |
testcase_04 | AC | 2 ms
6,820 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 1 ms
6,816 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | TLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
ソースコード
#include <iostream> #include <vector> #include <map> #include <set> using namespace std; typedef long long LL; int N,M; void GetMaxPersonList(vector<vector<LL>> &R,int I,int J,set<int> &PersonSet) { int i; multimap<LL,int,greater<LL>> myMap; multimap<LL,int,greater<LL>>::iterator mit; for (i=0;i<=I;i++){ myMap.insert(multimap<LL,int,greater<LL>>::value_type(R[i][J],i+1)); } mit=myMap.begin(); LL maxV=(*mit).first; for (;mit!=myMap.end();mit++){ if (maxV==(*mit).first){ PersonSet.insert((*mit).second); }else{ break; } } myMap.clear(); } int GetWinNum(vector<vector<LL>> &R,int I) { int num=0; set<int> PersonSet; for (int j=0;j<M;j++){ GetMaxPersonList(R,I,j,PersonSet); } num=PersonSet.size(); return num; } int main(int argc, char* argv[]) { cin>>N>>M; vector<vector<LL>> R(N,vector<LL>(M)); int i,j; for (i=0;i<N;i++){ for (j=0;j<M;j++){ cin>>R[i][j]; } } for (i=0;i<N;i++){ cout<<GetWinNum(R,i)<<endl; } return 0; }