結果

問題 No.709 優勝可能性
ユーザー 乾麺乾麺
提出日時 2024-05-17 07:45:13
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 843 bytes
コンパイル時間 3,630 ms
コンパイル使用メモリ 291,636 KB
実行使用メモリ 14,312 KB
最終ジャッジ日時 2024-05-17 07:45:24
合計ジャッジ時間 10,046 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 1 ms
6,940 KB
testcase_20 AC 499 ms
14,252 KB
testcase_21 AC 524 ms
14,288 KB
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _GLIBCXX_DEBUG
#include <bits/stdc++.h>
#include <atcoder/dsu>
#include <atcoder/segtree>
using namespace atcoder;
using namespace std;
typedef long long ll;
#define rep(i,a,b) for(int i=a;i<b;i++)
using vi = vector<int>; 
using vvi = vector<vi>; 
using li =vector<ll>;
using lli=vector<li>;
using si =vector<char>;
using ssi =vector<si>;
const long long INF = 1e18;
const long long MOD=1e9+7;
//for (auto [key, val] : mp)
int main() { ll n,m;cin>>n>>m;
vvi vec(n,vi(m));
rep(i,0,n)rep(j,0,m)cin>>vec[i][j];
li ANS(n);
ll cnt=1;
map<ll,pair<ll,ll>>mp;
rep(i,0,m)mp[i]={vec[0][i],0};
ANS[0]=m;
cout<<cnt<<endl;
rep(i,1,n){
	rep(j,0,m){
		if(vec[i][j]>mp[j].first){ANS[mp[j].second]--;if(ANS[mp[j].second]==0)cnt--;mp[j].second=i;mp[j].first=vec[i][j];ANS[i]++;}
	}
	//rep(j,0,m)cout<<ANS[j]<<" ";
	if(ANS[i])cnt++;
	cout<<cnt<<endl;
}
}
0