Submission #1131283


Source Code Expand

#include <iostream>
#include <cstdio>
#include <vector>
#include <string>
#include <algorithm>
#include <set>
#include <map>

#define rep(i,n) for(int i=0; i<(n); i++)
#define reps(i,x,n) for(int i=x; i<(n); i++)
#define rrep(i,n) for(int i=(n)-1; i>=0; i--)
#define all(X) (X).begin(),(X).end()
#define X first
#define Y second
#define pb push_back
#define eb emplace_back

using namespace std;
typedef long long int ll;
typedef pair<int,int> pii;
typedef pair<ll,ll> pll;

template<class T> bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; }
template<class T> bool chmin(T &a, const T &b) { if (a>b) { a=b; return 1; } return 0; }

template<class A, size_t N, class T> void Fill(A (&a)[N], const T &v){ fill( (T*)a, (T*)(a+N), v ); }

const ll INF = 0x3fffffff;

int N;
map<vector<string>, int> memo;
int dfs(vector<string> &a){
	if( memo.count(a) ) return memo[a];
	memo[a] = INF;
	int ret = INF;
	rep(i,N) rep(j,N){
		vector<string> b = a;
		rep(k,N) b[k][j] = a[i][k];
		chmin( ret, dfs(b) + 1 );
	}
	return memo[a] = ret;
}

int main(){
	//ios_base::sync_with_stdio(0);

	cin >> N;
	vector<string> a(N);
	rep(i,N) cin >> a[i];

	vector<string> b(N);
	rep(i,N) rep(j,N) b[i] += "#";
	memo[b] = 0;

	int ans = dfs(a);
	if( ans == INF ) ans = -1;
	cout << ans << endl;

	return 0;
}

Submission Info

Submission Time
Task B - Row to Column
User oyas
Language C++14 (GCC 5.4.1)
Score 0
Code Size 1366 Byte
Status WA
Exec Time 2119 ms
Memory 392120 KB

Judge Result

Set Name Sample Subtask All
Score / Max Score 0 / 0 0 / 300 0 / 1000
Status
AC × 5
AC × 17
WA × 3
AC × 18
WA × 3
TLE × 22
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 5 ms 384 KB
0_04.txt AC 5 ms 512 KB
1_00.txt AC 1 ms 256 KB
1_01.txt AC 1 ms 256 KB
1_02.txt WA 5 ms 512 KB
1_03.txt AC 5 ms 512 KB
1_04.txt WA 52 ms 512 KB
1_05.txt AC 5 ms 384 KB
1_06.txt WA 5 ms 384 KB
1_07.txt AC 5 ms 384 KB
1_08.txt AC 5 ms 512 KB
1_09.txt AC 5 ms 384 KB
1_10.txt AC 5 ms 384 KB
1_11.txt AC 5 ms 384 KB
1_12.txt AC 1 ms 256 KB
1_13.txt AC 5 ms 512 KB
1_14.txt AC 5 ms 512 KB
2_00.txt TLE 2103 ms 1140 KB
2_01.txt AC 11 ms 768 KB
2_02.txt TLE 2119 ms 392120 KB
2_03.txt TLE 2105 ms 44804 KB
2_04.txt TLE 2103 ms 1672 KB
2_05.txt TLE 2103 ms 1672 KB
2_06.txt TLE 2105 ms 44804 KB
2_07.txt TLE 2113 ms 233856 KB
2_08.txt TLE 2117 ms 322052 KB
2_09.txt TLE 2115 ms 283300 KB
2_10.txt TLE 2115 ms 283876 KB
2_11.txt TLE 2114 ms 257200 KB
2_12.txt TLE 2118 ms 340676 KB
2_13.txt TLE 2115 ms 277796 KB
2_14.txt TLE 2117 ms 322684 KB
2_15.txt TLE 2105 ms 52552 KB
2_16.txt TLE 2106 ms 62960 KB
2_17.txt TLE 2106 ms 58092 KB
2_18.txt TLE 2106 ms 57748 KB
2_19.txt TLE 2105 ms 66488 KB
2_20.txt TLE 2106 ms 70780 KB
2_21.txt TLE 2105 ms 45616 KB
2_22.txt TLE 2105 ms 51924 KB