結果

問題 No.2986 Permutation Puzzle
ユーザー t98slidert98slider
提出日時 2024-12-11 21:43:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 22 ms / 2,000 ms
コード長 2,865 bytes
コンパイル時間 2,733 ms
コンパイル使用メモリ 215,236 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-11 21:43:17
合計ジャッジ時間 5,178 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 16 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 4 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 3 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 6 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 3 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 3 ms
5,248 KB
testcase_24 AC 21 ms
5,248 KB
testcase_25 AC 14 ms
5,248 KB
testcase_26 AC 14 ms
5,248 KB
testcase_27 AC 5 ms
5,248 KB
testcase_28 AC 16 ms
5,248 KB
testcase_29 AC 7 ms
5,248 KB
testcase_30 AC 16 ms
5,248 KB
testcase_31 AC 13 ms
5,248 KB
testcase_32 AC 3 ms
5,248 KB
testcase_33 AC 15 ms
5,248 KB
testcase_34 AC 13 ms
5,248 KB
testcase_35 AC 11 ms
5,248 KB
testcase_36 AC 2 ms
5,248 KB
testcase_37 AC 4 ms
5,248 KB
testcase_38 AC 16 ms
5,248 KB
testcase_39 AC 8 ms
5,248 KB
testcase_40 AC 2 ms
5,248 KB
testcase_41 AC 11 ms
5,248 KB
testcase_42 AC 12 ms
5,248 KB
testcase_43 AC 22 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using T = array<array<int,10>,10>;

int n;
void dump(T B){
    for(int i = 0; i < n; i++){
        for(int j = 0; j < n; j++){
            cerr << B[i][j] + 1 << (j + 1 == n ? '\n' : ' ');
        }
    }
}

T gen(T &A, char c, int p){
    T B{{}};
    array<int, 10> tr{};
    if(c == 'R'){
        for(int i = 0; i < n; i++) tr[i] = A[p][i];
        for(int i = 0; i < n; i++){
            for(int j = 0; j < n; j++){
                B[tr[i]][j] = A[i][j];
            }
        }
    }else{
        for(int i = 0; i < n; i++) tr[i] = A[i][p];
        for(int i = 0; i < n; i++){
            for(int j = 0; j < n; j++){
                B[i][tr[j]] = A[i][j];
            }
        }
    }
    return B;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int k;
    cin >> n >> k;
    T A{{}}, B{{}};
    for(int i = 0; i < n; i++){
        for(int j = 0; j < n; j++){
            cin >> A[i][j];
            A[i][j]--;
        }
    }
    for(int i = 0; i < n; i++){
        for(int j = 0; j < n; j++){
            cin >> B[i][j];
            B[i][j]--;
        }
    }
    vector<pair<char,int>> dir;
    for(int i = 0; i < n; i++){
        dir.emplace_back('R', i);
        dir.emplace_back('C', i);
    }
    sort(dir.begin(), dir.end());
    vector<T> stk;
    vector<pair<char,int>> ope;
    auto dfs = [&](auto dfs, int i) -> bool {
        if (stk.back() == B) return true;
        if(i == k) return false;
        for(auto [c, p] : dir){
            ope.emplace_back(c, c == 'C' ? stk.back()[0][p] : stk.back()[p][0]);
            stk.emplace_back(gen(stk.back(), c, p));
            if(dfs(dfs, i + 1)) return true;
            ope.pop_back();
            stk.pop_back();
        }
        return false;
    };
    auto search = [&](char c, int v, T& tmp){
        if(c == 'C'){
            for(int j = 0; j < n; j++){
                if(tmp[0][j] == v) return j;
            }
        }
        for(int j = 0; j < n; j++){
            if(tmp[j][0] == v) return j;
        }
        return -1;
    };
    stk.emplace_back(A);
    dfs(dfs, 0);
    reverse(stk.begin(), stk.end());
    reverse(ope.begin(), ope.end());
    vector<pair<char,int>> ans;
    for(int i = 0; i + 1 < stk.size(); i++){
        auto [c, v] = ope[i];
        T S = stk[i];
        int cnt = -1;
        for(int k = 1; k <= 250; k++){
            S = gen(S, c, search(c, v, S));
            if(S == stk[i + 1]){
                cnt = k;
                break;
            }
        }
        if(cnt != -1){
            S = stk[i];
            while(cnt--){
                int p = search(c, v, S);
                ans.emplace_back(c, p);
                S = gen(S, c, p);
            }
        }
    }
    cout << ans.size() << '\n';
    for(auto [c, p] : ans) cout << c << ' ' << p + 1 << '\n';
}
0