結果

問題 No.1727 [Cherry 3rd Tune] Stray
ユーザー 👑 KazunKazun
提出日時 2021-08-15 04:20:28
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,523 ms / 6,000 ms
コード長 1,142 bytes
コンパイル時間 3,416 ms
コンパイル使用メモリ 145,556 KB
実行使用メモリ 45,184 KB
最終ジャッジ日時 2024-11-08 09:11:02
合計ジャッジ時間 6,005 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 3 ms
5,248 KB
testcase_03 AC 5 ms
5,248 KB
testcase_04 AC 17 ms
5,248 KB
testcase_05 AC 70 ms
5,888 KB
testcase_06 AC 334 ms
13,568 KB
testcase_07 AC 1,523 ms
45,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<atcoder/all>

using namespace std;

int action(int x,vector<int> a,int N){
    int y=0;
    for (int i=0; i<2*N; i++){
        if (x&(1<<i)) y|=1<<a[i];
    }
    return y;
}

int main(){
    int T,N,C;
    
    cin >> T;
    
    for (int tt=1; tt<=T; tt++){
        cin >> N >> C;
    
        atcoder::dsu U(1<<(2*N));
    
        vector<vector<int>> t(N, vector<int>(2*N,0)),u(N, vector<int>(2*N,0));
    
        // 2π/N 回転
        for (int i=0; i<N; i++){
            for (int j=0; j<N; j++){
                t[i][j]  =(i+j)%N;
                t[i][j+N]=t[i][j]+N;
            }
        }
    
        // ひっくり返す
        for (int i=0; i<N; i++){
            for (int j=0; j<N; j++){
                u[i][j+N]=(N-1)-j;
                u[i][j]  =u[i][j+N]+N;
            }
        }
    
        for (int S=0; S<(1<<(2*N)); S++){
            for (int i=0; i<N; i++){
                U.merge(S,action(S,t[i],N));
                U.merge(S,action(S,u[i],N));
            }
        }
    
        vector<vector<int>> G=U.groups();
    
        cout << G.size() << endl;
    }

}
0