Submission #1131220


Source Code Expand

#include <bits/stdc++.h>

using namespace std;

#define pb push_back
#define mp make_pair
#define forn(i, n) for (int i = 0; i < (int)(n); ++i)
typedef long long LL;
typedef pair<int, int> PII;

int n;
string s[3];
int dist[1234];

int toNum() {
    int num = 0;
    forn(i, n) forn(j, n) {
        num = 2 * num + (s[i][j] == '#');
    }
    return num;
}

void toTable(int num) {
    for (int i = n - 1; i >= 0; --i) {
        for (int j = n - 1; j >= 0; --j) {
            if (num & 1) {
                s[i][j] = '#';
            } else {
                s[i][j] = '.';
            }
            num >>= 1;
        }
    }
}

queue<int> q;

int main() {
    ios_base::sync_with_stdio(false);
    cin >> n;
    forn(i, n) {
        cin >> s[i];
    }
    memset(dist, -1, sizeof dist);
    int st = toNum();
    dist[st] = 0;
    q.push(st);
    while (!q.empty()) {
        int v = q.front();
        q.pop();
        forn(i, n) forn(j, n) {
            toTable(v);
            string x;
            forn(k, n) {
                x += s[i][k];
            }
            forn(k, n) {
                s[k][j] = x[k];
            }
            int nv = toNum();
            if (dist[nv] == -1) {
                dist[nv] = dist[v] + 1;
                q.push(nv);
            }
        }
    }
    forn(i, n) forn(j, n) {
        s[i][j] = '#';
    }
    int need = toNum();
    cout << dist[need] << endl;
    return 0;
}

Submission Info

Submission Time
Task B - Row to Column
User HellKitsune
Language C++14 (GCC 5.4.1)
Score 300
Code Size 1496 Byte
Status RE
Exec Time 106 ms
Memory 256 KB

Judge Result

Set Name Sample Subtask All
Score / Max Score 0 / 0 300 / 300 0 / 1000
Status
AC × 5
AC × 20
AC × 20
RE × 23
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 2 ms 256 KB
0_04.txt AC 2 ms 256 KB
1_00.txt AC 1 ms 256 KB
1_01.txt AC 1 ms 256 KB
1_02.txt AC 2 ms 256 KB
1_03.txt AC 2 ms 256 KB
1_04.txt AC 2 ms 256 KB
1_05.txt AC 2 ms 256 KB
1_06.txt AC 2 ms 256 KB
1_07.txt AC 2 ms 256 KB
1_08.txt AC 2 ms 256 KB
1_09.txt AC 2 ms 256 KB
1_10.txt AC 2 ms 256 KB
1_11.txt AC 2 ms 256 KB
1_12.txt AC 1 ms 256 KB
1_13.txt AC 2 ms 256 KB
1_14.txt AC 2 ms 256 KB
2_00.txt RE 102 ms 256 KB
2_01.txt RE 103 ms 256 KB
2_02.txt RE 103 ms 256 KB
2_03.txt RE 100 ms 256 KB
2_04.txt RE 106 ms 256 KB
2_05.txt RE 103 ms 256 KB
2_06.txt RE 102 ms 256 KB
2_07.txt RE 102 ms 256 KB
2_08.txt RE 99 ms 256 KB
2_09.txt RE 101 ms 256 KB
2_10.txt RE 103 ms 256 KB
2_11.txt RE 102 ms 256 KB
2_12.txt RE 100 ms 256 KB
2_13.txt RE 99 ms 256 KB
2_14.txt RE 100 ms 256 KB
2_15.txt RE 101 ms 256 KB
2_16.txt RE 101 ms 256 KB
2_17.txt RE 100 ms 256 KB
2_18.txt RE 101 ms 256 KB
2_19.txt RE 103 ms 256 KB
2_20.txt RE 101 ms 256 KB
2_21.txt RE 100 ms 256 KB
2_22.txt RE 100 ms 256 KB