結果
問題 | No.1727 [Cherry 3rd Tune] Stray |
ユーザー | 👑 Kazun |
提出日時 | 2021-08-15 16:58:34 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 942 bytes |
コンパイル時間 | 3,178 ms |
コンパイル使用メモリ | 144,800 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-07 08:47:26 |
合計ジャッジ時間 | 3,668 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
ソースコード
#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 N; cin >> N; 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]=((i-j)+N)%N; 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; }