Submission #1729177


Source Code Expand

#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
 
using namespace std;
using namespace __gnu_pbds;
 
#define fi first
#define se second
#define mp make_pair
#define pb push_back
#define fbo find_by_order
#define ook order_of_key
 
typedef long long ll;
typedef pair<int,int> ii;
typedef vector<int> vi;
typedef long double ld; 
typedef tree<int, null_type, less<int>, rb_tree_tag, tree_order_statistics_node_update> pbds;
typedef set<int>::iterator sit;
typedef map<int,int>::iterator mit;
typedef vector<int>::iterator vit;

char a[501][501];
int n; 
int main()
{
	ios_base::sync_with_stdio(0); cin.tie(0);
	cin>>n;
	bool allempty = 1;
	for(int i=0;i<n;i++)
	{
		for(int j=0;j<n;j++)
		{
			cin>>a[i][j];
			if(a[i][j]=='#') allempty=0;
		}
	}
	if(allempty)
	{
		cout<<-1<<'\n';
		return 0;
	}
	int fullcol = 0;
	for(int j = 0; j < n; j++)
	{
		bool full=1;
		for(int i=0;i<n;i++)
		{
			if(a[i][j]=='.')
			{
				full=0;
				break;
			}
		}
		if(full) fullcol++;
	}
	if(fullcol==n)
	{
		cout<<0<<'\n'; return 0;
	}
	int minans = 1000000;
	for(int i = 0; i < n; i++)
	{
		//find min steps to make row i full
		int cntemp = 0;
		for(int j = 0; j < n; j++)
		{
			if(a[i][j]=='.') cntemp++;
		}
		if(cntemp==0)
		{
			minans=0; break;
		}
		bool pos=0;
		for(int j = 0; j < n; j++)
		{
			if(a[j][i]=='#')
			{
				pos=1;
			}
		}	
		if(!pos)
		{
			cntemp++;
			pos=1;
		}
		if(pos)
		{
			minans=min(minans,cntemp);
		}
	}
	minans+=n-fullcol;
	cout<<minans<<'\n';
}

Submission Info

Submission Time
Task B - Row to Column
User vjudge4
Language C++14 (GCC 5.4.1)
Score 1300
Code Size 1522 Byte
Status AC
Exec Time 4 ms
Memory 512 KB

Judge Result

Set Name Sample Subtask All
Score / Max Score 0 / 0 300 / 300 1000 / 1000
Status
AC × 5
AC × 20
AC × 43
Set Name Test Cases
Sample 0_00.txt, 0_01.txt, 0_02.txt, 0_03.txt, 0_04.txt
Subtask 0_00.txt, 0_01.txt, 0_02.txt, 0_03.txt, 0_04.txt, 1_00.txt, 1_01.txt, 1_02.txt, 1_03.txt, 1_04.txt, 1_05.txt, 1_06.txt, 1_07.txt, 1_08.txt, 1_09.txt, 1_10.txt, 1_11.txt, 1_12.txt, 1_13.txt, 1_14.txt
All 0_00.txt, 0_01.txt, 0_02.txt, 0_03.txt, 0_04.txt, 1_00.txt, 1_01.txt, 1_02.txt, 1_03.txt, 1_04.txt, 1_05.txt, 1_06.txt, 1_07.txt, 1_08.txt, 1_09.txt, 1_10.txt, 1_11.txt, 1_12.txt, 1_13.txt, 1_14.txt, 2_00.txt, 2_01.txt, 2_02.txt, 2_03.txt, 2_04.txt, 2_05.txt, 2_06.txt, 2_07.txt, 2_08.txt, 2_09.txt, 2_10.txt, 2_11.txt, 2_12.txt, 2_13.txt, 2_14.txt, 2_15.txt, 2_16.txt, 2_17.txt, 2_18.txt, 2_19.txt, 2_20.txt, 2_21.txt, 2_22.txt
Case Name Status Exec Time Memory
0_00.txt AC 1 ms 256 KB
0_01.txt AC 1 ms 256 KB
0_02.txt AC 1 ms 256 KB
0_03.txt AC 1 ms 256 KB
0_04.txt AC 1 ms 256 KB
1_00.txt AC 1 ms 256 KB
1_01.txt AC 1 ms 256 KB
1_02.txt AC 1 ms 256 KB
1_03.txt AC 1 ms 256 KB
1_04.txt AC 1 ms 256 KB
1_05.txt AC 1 ms 256 KB
1_06.txt AC 1 ms 256 KB
1_07.txt AC 1 ms 256 KB
1_08.txt AC 1 ms 256 KB
1_09.txt AC 1 ms 256 KB
1_10.txt AC 1 ms 256 KB
1_11.txt AC 1 ms 256 KB
1_12.txt AC 1 ms 256 KB
1_13.txt AC 1 ms 256 KB
1_14.txt AC 1 ms 256 KB
2_00.txt AC 4 ms 512 KB
2_01.txt AC 4 ms 512 KB
2_02.txt AC 4 ms 512 KB
2_03.txt AC 4 ms 512 KB
2_04.txt AC 4 ms 512 KB
2_05.txt AC 4 ms 512 KB
2_06.txt AC 4 ms 512 KB
2_07.txt AC 3 ms 512 KB
2_08.txt AC 4 ms 512 KB
2_09.txt AC 4 ms 512 KB
2_10.txt AC 4 ms 512 KB
2_11.txt AC 4 ms 512 KB
2_12.txt AC 4 ms 512 KB
2_13.txt AC 4 ms 512 KB
2_14.txt AC 4 ms 512 KB
2_15.txt AC 4 ms 512 KB
2_16.txt AC 4 ms 512 KB
2_17.txt AC 4 ms 512 KB
2_18.txt AC 3 ms 512 KB
2_19.txt AC 4 ms 512 KB
2_20.txt AC 3 ms 512 KB
2_21.txt AC 3 ms 512 KB
2_22.txt AC 4 ms 512 KB