結果

問題 No.709 優勝可能性
ユーザー ohreitetsuohreitetsu
提出日時 2018-10-19 11:39:47
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 787 bytes
コンパイル時間 2,271 ms
コンパイル使用メモリ 75,208 KB
実行使用メモリ 4,504 KB
最終ジャッジ日時 2023-08-10 17:14:12
合計ジャッジ時間 11,687 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 TLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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<<i+1<<" "<<GetWinNum(R)<<endl;
	}
	return 0;
}
0