結果
問題 | No.2428 Returning Shuffle |
ユーザー | Kude |
提出日時 | 2023-08-18 21:26:25 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 366 ms / 2,000 ms |
コード長 | 3,112 bytes |
コンパイル時間 | 2,877 ms |
コンパイル使用メモリ | 240,084 KB |
実行使用メモリ | 49,124 KB |
最終ジャッジ日時 | 2024-11-28 05:39:22 |
合計ジャッジ時間 | 6,525 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 120 ms
25,216 KB |
testcase_01 | AC | 366 ms
49,124 KB |
testcase_02 | AC | 343 ms
49,072 KB |
testcase_03 | AC | 10 ms
11,392 KB |
testcase_04 | AC | 11 ms
11,392 KB |
testcase_05 | AC | 12 ms
11,320 KB |
testcase_06 | AC | 11 ms
11,368 KB |
testcase_07 | AC | 11 ms
11,392 KB |
testcase_08 | AC | 11 ms
11,328 KB |
testcase_09 | AC | 12 ms
11,336 KB |
testcase_10 | AC | 11 ms
11,324 KB |
testcase_11 | AC | 11 ms
11,440 KB |
testcase_12 | AC | 11 ms
11,392 KB |
testcase_13 | AC | 10 ms
11,392 KB |
testcase_14 | AC | 11 ms
11,392 KB |
testcase_15 | AC | 11 ms
11,392 KB |
testcase_16 | AC | 11 ms
11,308 KB |
testcase_17 | AC | 12 ms
11,392 KB |
testcase_18 | AC | 10 ms
11,308 KB |
testcase_19 | AC | 232 ms
43,216 KB |
testcase_20 | AC | 227 ms
43,208 KB |
testcase_21 | AC | 10 ms
11,360 KB |
testcase_22 | AC | 11 ms
11,392 KB |
testcase_23 | AC | 11 ms
11,328 KB |
testcase_24 | AC | 190 ms
32,264 KB |
testcase_25 | AC | 178 ms
32,268 KB |
ソースコード
#include<bits/stdc++.h> namespace { #pragma GCC diagnostic ignored "-Wunused-function" #include<atcoder/all> #pragma GCC diagnostic warning "-Wunused-function" using namespace std; using namespace atcoder; #define rep(i,n) for(int i = 0; i < (int)(n); i++) #define rrep(i,n) for(int i = (int)(n) - 1; i >= 0; i--) #define all(x) begin(x), end(x) #define rall(x) rbegin(x), rend(x) template<class T> bool chmax(T& a, const T& b) { if (a < b) { a = b; return true; } else return false; } template<class T> bool chmin(T& a, const T& b) { if (b < a) { a = b; return true; } else return false; } using ll = long long; using P = pair<int,int>; using VI = vector<int>; using VVI = vector<VI>; using VL = vector<ll>; using VVL = vector<VL>; using mint = modint998244353; pair<vector<int>, vector<int>> primes_lpf(const int n) { vector<int> primes; primes.reserve(n / 10); vector<int> lpf(n + 1); for (int i = 2; i <= n; i += 2) lpf[i] = 2; for (int i = 3; i <= n; i += 6) lpf[i] = 3; if (2 <= n) primes.push_back(2); if (3 <= n) primes.push_back(3); // 5 * x <= n, x <= floor(n / 5) const int n5 = n / 5; int x = 5; char add_next = 2; for (; x <= n5; x += add_next, add_next ^= 2 ^ 4) { int px = lpf[x]; if (px == 0) { lpf[x] = px = x; primes.push_back(x); } for (int i = 2;; ++i) { int q = primes[i]; int y = q * x; if (y > n) break; lpf[y] = q; if (q == px) break; } } for (; x <= n; x += add_next, add_next ^= 2 ^ 4) { if (lpf[x] == 0) { lpf[x] = x; primes.push_back(x); } } return {move(primes), move(lpf)}; } constexpr int PSIZE = 1000010; auto [primes, lpf] = primes_lpf(PSIZE); vector<pair<int, int>>& factorize_lv(int x) { int ps[10], cs[10]; int sz = 0; while (x != 1) { int p = lpf[x], c = 0; do {x /= p; c++;} while (x % p == 0); ps[sz] = p; cs[sz] = c; sz++; } static vector<pair<int, int>> fs; fs.clear(); for (int i = 0; i < sz; i++) fs.emplace_back(ps[i], cs[i]); return fs; } vector<vector<int>> cycle_decomposition(const vector<int>& a) { const int n = a.size(); vector<char> visited(n); vector<vector<int>> res; for(int i = 0; i < n; i++) if (!visited[i]) { res.emplace_back(); auto& vs = res.back(); int v = i; do { visited[v] = true; vs.push_back(v); v = a[v]; } while (v != i); } return res; } } int main() { ios::sync_with_stdio(false); cin.tie(0); int n, m; cin >> n >> m; VI s(n); iota(all(s), 0); VI s_inv(n); iota(all(s_inv), 0); rep(_, m) { int t; cin >> t; static VI d; d.resize(t); rep(i, t) cin >> d[i], d[i]--; static VI d_orig; d_orig.resize(t); rep(i, t) d_orig[i] = s_inv[d[i]]; rotate(d.begin(), d.begin() + 1, d.end()); rep(i, t) s[d_orig[i]] = d[i], s_inv[d[i]] = d_orig[i]; } VI e(PSIZE); for(const auto& c : cycle_decomposition(s)) { for(auto [p, c] : factorize_lv(c.size())) { chmax(e[p], c); } } mint ans = 1; rep(i, PSIZE) if (e[i]) { ans *= mint(i).pow(e[i]); } cout << ans.val() << '\n'; }