結果

問題 No.43 野球の試合
ユーザー evawenisevawenis
提出日時 2020-07-09 18:58:51
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 7 ms / 5,000 ms
コード長 865 bytes
コンパイル時間 2,415 ms
コンパイル使用メモリ 207,720 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-16 20:47:34
合計ジャッジ時間 2,970 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 7 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

int main(){
	cin.tie(0),ios::sync_with_stdio(false);
	int n;  cin>>n;
	vector<string>s(n); for(auto&&i:s)cin>>i;
	vector<pair<int,int>>a,sc(n,{0,-1}); sc.at(0).second=0;
	for(int y=0;y<n;++y){
		for(int x=0;x<y;++x){
			if(s.at(y).at(x)!='x'){
				if(s.at(y).at(x)=='-')a.push_back({y,x});
				++sc.at(y).first;
			}
			else ++sc.at(x).first;
		}
	}
	int ans=n+1;
	for(int i=0;i<(1<<a.size());++i){
		vector<pair<int,int>>tsc=sc;
		for(int j=0;j<a.size();++j){
			if(!(i&(1<<j)))continue;
			int y=a.at(j).first,x=a.at(j).second;
			++tsc.at(x).first,--tsc.at(y).first;
		}
		sort(tsc.rbegin(),tsc.rend());
		int tans=n+1;
		for(int j=0,fix=1;j<n;++j){
			if(tsc.at(j).second==-1){
				if(j>0&&tsc.at(j).first==tsc.at(j-1).first)--fix;
				continue;
			}
			tans=j+fix;
		}
		ans=min(ans,tans);
	}
	cout<<ans<<"\n"s;
}
0