結果

問題 No.2984 [Cherry Anniversary 4] 満開の願いを込めた 27 の桜
ユーザー 👑 NachiaNachia
提出日時 2024-12-09 01:45:13
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 73 ms / 4,000 ms
コード長 1,221 bytes
コンパイル時間 687 ms
コンパイル使用メモリ 71,040 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-09 01:45:17
合計ジャッジ時間 3,623 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#define rep(i,n) for(int i=0; i<int(n); i++)
template<typename A> void chmin(A& l, const A& r){ if(r < l) l = r; }
using namespace std;

void testcase(){
    int P[6][3] = {0,1,2,0,2,1,1,0,2,1,2,0,2,0,1,2,1,0};
    int Q[6] = {0,1,1,2,2,1};
    int A[3][3][3];
    rep(i,3) rep(j,3) rep(k,3) cin >> A[i][j][k];
    int X[3][3], Y[3][3], Z[3][3];
    rep(i,3) rep(j,3) cin >> X[i][j];
    rep(i,3) rep(j,3) cin >> Y[i][j];
    rep(i,3) rep(j,3) cin >> Z[i][j];
    int x[3][3] = {}, y[3][3] = {}, z[3][3] = {};
    rep(i,3) rep(j,3) rep(k,3) x[j][k] += A[i][j][k];
    rep(i,3) rep(j,3) rep(k,3) y[i][k] += A[i][j][k];
    rep(i,3) rep(j,3) rep(k,3) z[i][j] += A[i][j][k];
    int ans = 100;
    rep(a,6) rep(b,6) rep(c,6){
        bool ok = true;
        rep(j,3) rep(k,3) if(X[j][k] != x[P[b][j]][P[c][k]]) ok = false;
        rep(i,3) rep(k,3) if(Y[i][k] != y[P[a][i]][P[c][k]]) ok = false;
        rep(i,3) rep(j,3) if(Z[i][j] != z[P[a][i]][P[b][j]]) ok = false;
        if(ok) chmin(ans, Q[a] + Q[b] + Q[c]);
    }
    if(ans == 100) ans = -1;
    cout << ans << '\n';
}

int main(){
    ios::sync_with_stdio(false); cin.tie(nullptr);
    int T; cin >> T;
    rep(t,T) testcase();
    return 0;
}
0