結果

問題 No.2984 [Cherry Anniversary 4] 満開の願いを込めた 27 の桜
ユーザー t98slidert98slider
提出日時 2024-12-09 03:06:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 129 ms / 4,000 ms
コード長 1,475 bytes
コンパイル時間 2,413 ms
コンパイル使用メモリ 206,772 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-09 03:07:03
合計ジャッジ時間 6,609 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 124 ms
5,248 KB
testcase_02 AC 124 ms
5,248 KB
testcase_03 AC 124 ms
5,248 KB
testcase_04 AC 125 ms
5,248 KB
testcase_05 AC 125 ms
5,248 KB
testcase_06 AC 125 ms
5,248 KB
testcase_07 AC 129 ms
5,248 KB
testcase_08 AC 124 ms
5,248 KB
testcase_09 AC 125 ms
5,248 KB
testcase_10 AC 125 ms
5,248 KB
testcase_11 AC 125 ms
5,248 KB
testcase_12 AC 124 ms
5,248 KB
testcase_13 AC 124 ms
5,248 KB
testcase_14 AC 125 ms
5,248 KB
testcase_15 AC 125 ms
5,248 KB
testcase_16 AC 127 ms
5,248 KB
testcase_17 AC 124 ms
5,248 KB
testcase_18 AC 124 ms
5,248 KB
testcase_19 AC 125 ms
5,248 KB
testcase_20 AC 125 ms
5,248 KB
testcase_21 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using T = array<array<array<int,3>,3>,3>;
void input(T &A){ for(auto &&vec2 : A) for(auto &&vec1 : vec2) for(auto &&v : vec1) cin >> v; }

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int t;
    cin >> t;
    vector<int> dp(3 * 3 * 3, 2);
    dp[0 + 1 * 3 + 2 * 9] = 0;
    dp[1 + 0 * 3 + 2 * 9] = dp[2 + 1 * 3 + 0 * 9] = dp[0 + 2 * 3 + 1 * 9] = 1;
    while(t--){
        T A, B;
        input(A), input(B);
        vector<int> x(3), y, z;
        iota(x.begin(), x.end(), 0);
        y = z = x;
        int ans = 1 << 30;
        auto check = [&](){
            T C{{}};
            for(int i = 0; i < 3; i++){
                for(int j = 0; j < 3; j++){
                    for(int k = 0; k < 3; k++){
                        C[0][y[j]][z[k]] += A[i][j][k];
                        C[1][x[i]][z[k]] += A[i][j][k];
                        C[2][x[i]][y[j]] += A[i][j][k];
                    }
                }
            }
            return C == B;
        };
        auto f = [&](vector<int> &x){return x[0] + x[1] * 3 + x[2] * 9;};
        do{
            do{
                do{
                    if(check()) ans = min(ans, dp[f(x)] + dp[f(y)] + dp[f(z)]);
                }while(next_permutation(z.begin(), z.end()));
            }while(next_permutation(y.begin(), y.end()));
        }while(next_permutation(x.begin(), x.end()));
        if(ans >> 30) ans = -1;
        cout << ans << '\n';
    }
}
0