結果
問題 | No.709 優勝可能性 |
ユーザー | ahe100 |
提出日時 | 2018-07-15 21:07:29 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,073 bytes |
コンパイル時間 | 888 ms |
コンパイル使用メモリ | 91,748 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-07 05:20:27 |
合計ジャッジ時間 | 5,714 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 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 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | AC | 2 ms
5,248 KB |
testcase_19 | AC | 2 ms
5,248 KB |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | AC | 2 ms
5,248 KB |
testcase_23 | AC | 2 ms
5,248 KB |
ソースコード
#include<cstdio> #include<cstring> #include<vector> #include<queue> #include<stack> #include<algorithm> #include<cmath> #include<climits> #include<string> #include<set> #include<unordered_set> #include<numeric> #include<map> #include<iostream> using namespace std; #define rep(i,n) for(int i = 0;i<((int)(n));i++) #define reg(i,a,b) for(int i = ((int)(a));i<=((int)(b));i++) #define irep(i,n) for(int i = ((int)(n)-1);i>=0;i--) #define ireg(i,a,b) for(int i = ((int)(b));i>=((int)(a));i--) typedef long long ll; typedef pair<ll, ll> mp; ll mod = 1e9+7; ll inf = 1e18; //AC int main(void){ ll n,m,r[1000][20]; vector<ll> winner[20]; rep(i,20)winner[i].push_back(0); cin>>n>>m; rep(i,n){ rep(j,m)cin>>r[i][j]; } rep(i,n){ unordered_set<ll> s; rep(j,m){ if(r[winner[j][0]][j]<r[i][j]){ //reset winner[j]={i}; }else if(i>0 && r[winner[j][0]][j]==r[i][j]){ winner[j].push_back(i); } rep(k,winner[j].size()){ s.insert(winner[j][k]); } } cout<<s.size()<<endl; } // winner[3]={2,3}; // cout<<winner[3].size()<<endl; return 0; }