Submission #1132593


Source Code Expand

#include<iostream>
#include<cstdio>
#include<algorithm>
#include<vector>
#include<string>
#include<unordered_map>
#include<unordered_set>
#include<map>
#include<set>
#include<functional>
#include<queue>
using namespace std;

string OK = "##################";
int main() {
	int k; cin >> k;
	string a;
	for (int l = 0; l < k; l++) {
		string r; cin >> r;
		a += r;
	}
	queue<string>Q;
	Q.push(a);
	int sum = 0;
	while (sum<8) {
		queue<string>copy;
		while (Q.size()) {
			string c = Q.front(); Q.pop();
			if (c == OK.substr(0, k*k)) {
				cout << sum << endl; return 0;
			}
			for (int i = 0; i < k; i++) {
				for (int j = 0; j < k; j++) {
					string d = c;
					string e;
					for (int f = 0; f < k; f++) {
						e += c[i * k + f];
					}
					for (int f = 0; f < k; f++) {
						d[f * k + j] = e[f];
					}
					copy.push(d);
				}
			}
		}
		Q = copy;
		sum++;
	}
	puts("-1");
}

Submission Info

Submission Time
Task B - Row to Column
User naoki2016
Language C++14 (GCC 5.4.1)
Score 0
Code Size 934 Byte
Status RE
Exec Time 6717 ms
Memory 366684 KB

Judge Result

Set Name Sample Subtask All
Score / Max Score 0 / 0 0 / 300 0 / 1000
Status
AC × 5
AC × 18
TLE × 2
AC × 18
TLE × 24
RE × 1
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 24 ms 4352 KB
0_02.txt AC 1 ms 256 KB
0_03.txt AC 1 ms 256 KB
0_04.txt AC 82 ms 13952 KB
1_00.txt TLE 2118 ms 362588 KB
1_01.txt AC 1 ms 256 KB
1_02.txt AC 42 ms 7040 KB
1_03.txt AC 209 ms 33920 KB
1_04.txt AC 1165 ms 189148 KB
1_05.txt AC 139 ms 23296 KB
1_06.txt AC 27 ms 4480 KB
1_07.txt AC 18 ms 3072 KB
1_08.txt AC 1 ms 256 KB
1_09.txt AC 5 ms 896 KB
1_10.txt AC 219 ms 34104 KB
1_11.txt AC 1 ms 256 KB
1_12.txt TLE 2119 ms 366684 KB
1_13.txt AC 1 ms 256 KB
1_14.txt AC 83 ms 13952 KB
2_00.txt TLE 2352 ms -491204 KB
2_01.txt TLE 4603 ms -491108 KB
2_02.txt TLE 2420 ms -490720 KB
2_03.txt RE 2102 ms -490976 KB
2_04.txt TLE 2107 ms -491052 KB
2_05.txt TLE 2207 ms -490740 KB
2_06.txt TLE 2533 ms -490812 KB
2_07.txt TLE 3827 ms -490724 KB
2_08.txt TLE 2206 ms -490832 KB
2_09.txt TLE 2131 ms -490860 KB
2_10.txt TLE 2316 ms -493168 KB
2_11.txt TLE 2381 ms -491188 KB
2_12.txt TLE 2198 ms -490948 KB
2_13.txt TLE 2549 ms -491084 KB
2_14.txt TLE 3224 ms -491092 KB
2_15.txt TLE 2266 ms -491392 KB
2_16.txt TLE 3574 ms -490776 KB
2_17.txt TLE 3142 ms -490704 KB
2_18.txt TLE 6717 ms -490644 KB
2_19.txt TLE 2633 ms -490748 KB
2_20.txt TLE 4536 ms -490748 KB
2_21.txt TLE 2274 ms -492456 KB
2_22.txt TLE 2637 ms -490620 KB