結果
問題 | No.709 優勝可能性 |
ユーザー | chocorusk |
提出日時 | 2018-09-22 15:39:29 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 488 ms / 3,500 ms |
コード長 | 901 bytes |
コンパイル時間 | 652 ms |
コンパイル使用メモリ | 88,464 KB |
実行使用メモリ | 10,284 KB |
最終ジャッジ日時 | 2024-07-18 08:59:16 |
合計ジャッジ時間 | 5,191 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
7,808 KB |
testcase_01 | AC | 4 ms
7,808 KB |
testcase_02 | AC | 4 ms
7,680 KB |
testcase_03 | AC | 3 ms
7,808 KB |
testcase_04 | AC | 4 ms
7,680 KB |
testcase_05 | AC | 4 ms
7,680 KB |
testcase_06 | AC | 4 ms
7,808 KB |
testcase_07 | AC | 3 ms
7,808 KB |
testcase_08 | AC | 4 ms
7,808 KB |
testcase_09 | AC | 4 ms
7,808 KB |
testcase_10 | AC | 226 ms
7,680 KB |
testcase_11 | AC | 158 ms
7,808 KB |
testcase_12 | AC | 362 ms
7,680 KB |
testcase_13 | AC | 345 ms
7,808 KB |
testcase_14 | AC | 292 ms
7,680 KB |
testcase_15 | AC | 281 ms
7,552 KB |
testcase_16 | AC | 250 ms
8,064 KB |
testcase_17 | AC | 257 ms
10,284 KB |
testcase_18 | AC | 4 ms
7,680 KB |
testcase_19 | AC | 5 ms
7,808 KB |
testcase_20 | AC | 488 ms
7,808 KB |
testcase_21 | AC | 473 ms
7,808 KB |
testcase_22 | AC | 4 ms
7,552 KB |
testcase_23 | AC | 4 ms
7,808 KB |
ソースコード
#include <cstdio> #include <cstring> #include <iostream> #include <string> #include <cmath> #include <bitset> #include <vector> #include <map> #include <set> #include <queue> #include <deque> #include <algorithm> #include <complex> #include <unordered_map> using namespace std; typedef long long int ll; typedef pair<int, int> P; int main() { int n, m; cin>>n>>m; int r[100000][10]; for(int i=0; i<n; i++){ for(int j=0; j<m; j++){ cin>>r[i][j]; } } int ct=0; int c[100001]; int mx[10]={}; vector<int> v[10]; for(int i=0; i<n; i++){ c[i]=0; for(int j=0; j<m; j++){ if(mx[j]<r[i][j]){ mx[j]=r[i][j]; while(!v[j].empty()){ int x=v[j].back(); c[x]--; if(c[x]==0) ct--; v[j].pop_back(); } c[i]++; v[j].push_back(i); }else if(mx[j]==r[i][j]){ c[i]++; v[j].push_back(i); } } if(c[i]>0) ct++; cout<<ct<<endl; } return 0; }