QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#91306 | #5820. 置换 | skittles1412 | 0 | 7ms | 3712kb | C++17 | 3.0kb | 2023-03-28 12:21:57 | 2023-03-28 12:22:05 |
Judging History
answer
#include "bits/extc++.h"
using namespace std;
template <typename T>
void dbgh(const T& t) {
cerr << t << endl;
}
template <typename T, typename... U>
void dbgh(const T& t, const U&... u) {
cerr << t << " | ";
dbgh(u...);
}
#ifdef DEBUG
#define dbg(...) \
cerr << "L" << __LINE__ << " [" << #__VA_ARGS__ << "]" \
<< ": "; \
dbgh(__VA_ARGS__)
#else
#define cerr \
if (false) \
cerr
#define dbg(...)
#endif
#define endl "\n"
#define long int64_t
#define sz(x) int(std::size(x))
struct mint {
static constexpr int MOD = 998244353;
static constexpr int norm(long x) {
x %= MOD;
if (x < 0) {
x += MOD;
}
return int(x);
}
int x;
constexpr mint() : x(0) {}
constexpr mint(long x) : x(norm(x)) {}
friend ostream& operator<<(ostream& out, const mint& m) {
return out << m.x;
}
mint& operator+=(const mint& m) {
x += m.x;
if (x >= MOD) {
x -= MOD;
}
return *this;
}
mint& operator*=(const mint& m) {
x = int(long(x) * m.x % MOD);
return *this;
}
friend mint operator+(mint a, const mint& b) {
return a += b;
}
friend mint operator*(mint a, const mint& b) {
return a *= b;
}
};
struct M {
static constexpr int maxn = 1e4;
mint fact[maxn];
M() {
fact[0] = 1;
for (int i = 1; i < maxn; i++) {
fact[i] = i * fact[i - 1];
}
}
} M;
mint solve(int m, const vector<int>& arr) {
mint dp[m + 1];
dp[m] = 1;
for (int i = m - 1; i >= 0; i--) {
for (auto& a : arr) {
if (i + a <= m) {
dp[i] += M.fact[a] * dp[i + a];
}
}
}
return dp[0];
}
void solve() {
int n, kv;
cin >> n >> kv;
int iarr[n];
for (auto& a : iarr) {
cin >> a;
a--;
}
int comps[n + 1] {};
bool vis[n] {};
for (int i = 0; i < n; i++) {
if (vis[i]) {
continue;
}
int u = i, cnt = 0;
while (!vis[u]) {
vis[u] = true;
u = iarr[u];
cnt++;
}
comps[cnt]++;
}
vector<int> clens[n + 1];
for (int i = 1; i <= n; i++) {
int g = gcd(i, kv);
clens[i / g].push_back(g);
}
mint ans = 1;
for (int i = 1; i <= n; i++) {
int m = comps[i];
auto& arr = clens[i];
sort(begin(arr), end(arr));
arr.erase(unique(begin(arr), end(arr)), arr.end());
ans *= solve(m, arr);
}
cout << ans << endl;
}
int main() {
cin.tie(nullptr);
cin.exceptions(ios::failbit);
ios_base::sync_with_stdio(false);
int tcs;
cin >> tcs;
while (tcs--) {
solve();
}
}
詳細信息
Test #1:
score: 0
Wrong Answer
time: 2ms
memory: 3516kb
input:
10 6 5 1 2 6 3 4 5 5 8 1 2 3 4 5 7 5 1 2 3 4 5 6 7 4 4 1 2 3 4 7 7 1 2 3 4 5 6 7 4 4 1 2 3 4 5 4 1 2 4 3 5 8 8 1 2 3 4 5 6 7 8 4 5 1 3 2 4 6 6 1 2 3 4 5 6
output:
1 69 361 35 5041 35 0 42051 1 895
result:
wrong answer 2nd lines differ - expected: '56', found: '69'
Test #2:
score: 0
Wrong Answer
time: 2ms
memory: 3508kb
input:
10 4 6 3 1 2 4 5 8 2 1 3 4 5 8 4 1 2 3 4 5 6 7 8 6 5 4 1 2 3 5 6 5 5 1 2 3 4 5 5 5 1 2 3 4 5 6 7 1 2 3 4 5 6 6 4 1 2 3 4 5 6 6 7 6 1 2 3 4 5 7 6 1 2 3 4 5 6 7
output:
0 0 1731 1 121 121 1 211 1 1879
result:
wrong answer 3rd lines differ - expected: '6224', found: '1731'
Test #3:
score: 0
Wrong Answer
time: 2ms
memory: 3456kb
input:
10 6 602552 1 2 3 4 5 6 4 775694 1 2 4 3 6 668467 1 4 2 3 5 6 6 558385 1 2 6 3 4 5 7 832183 4 1 2 3 5 6 7 6 631375 1 2 3 4 5 6 8 519340 1 2 3 5 4 6 7 8 4 636124 1 2 3 4 4 759099 3 1 2 4 7 977752 1 2 3 4 5 6 7
output:
211 0 1 1 1 241 0 35 0 469
result:
wrong answer 1st lines differ - expected: '256', found: '211'
Test #4:
score: 0
Wrong Answer
time: 1ms
memory: 3580kb
input:
10 43 725761 1 2 3 4 5 6 7 8 10 9 11 12 13 15 14 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 37 542860 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 26 28 29 30 31 32 33 34 36 35 37 27 793967 2 1 4 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 ...
output:
1 0 1 346682227 0 804858008 456971411 731785106 0 178182375
result:
wrong answer 4th lines differ - expected: '656150888', found: '346682227'
Test #5:
score: 0
Wrong Answer
time: 0ms
memory: 3520kb
input:
10 40 535121 3 1 2 4 5 6 7 8 9 11 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 43 660193 1 2 3 4 5 6 7 8 9 10 11 12 13 14 16 15 19 17 18 20 26 21 22 23 24 25 27 28 29 30 34 31 32 33 35 36 37 38 39 40 41 42 43 38 596459 1 2 4 3 5 6 7 8 9 10 11 12 13 15 14 ...
output:
1 699910447 912226464 853200899 0 0 0 0 0 864056061
result:
wrong answer 2nd lines differ - expected: '544069454', found: '699910447'
Test #6:
score: 0
Wrong Answer
time: 2ms
memory: 3544kb
input:
10 33 892596 1 2 6 3 4 5 9 7 8 10 11 12 14 13 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 32 30 31 33 39 875634 1 2 10 3 4 5 6 7 8 9 11 12 13 14 16 15 17 18 20 19 21 22 23 24 26 25 27 28 29 30 31 32 33 35 34 36 37 38 39 27 856117 1 2 3 4 5 10 6 7 8 9 11 12 13 14 15 16 17 18 20 19 21 24 22 23 25 26 ...
output:
0 0 1 0 735401299 907910066 546138211 800643984 1 587662864
result:
wrong answer 5th lines differ - expected: '860677875', found: '735401299'
Test #7:
score: 0
Wrong Answer
time: 7ms
memory: 3632kb
input:
10 2899 540778 3 1 2 4 5 6 9 7 8 10 11 12 13 14 15 16 17 18 19 20 21 22 24 23 27 25 26 28 29 30 31 32 33 34 35 37 36 38 39 40 41 42 44 43 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 70 68 69 71 72 73 74 75 76 77 78 80 79 81 82 83 89 84 85 86 87 88 90 91 92 93 94 95 96 97 98 ...
output:
0 386651335 0 0 945519154 540456849 0 204832842 0 132584111
result:
wrong answer 2nd lines differ - expected: '786737927', found: '386651335'
Test #8:
score: 0
Wrong Answer
time: 2ms
memory: 3644kb
input:
10 2310 568163 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 26 24 25 27 28 30 29 31 32 33 34 35 36 37 38 39 40 41 46 42 43 44 45 47 48 49 50 51 52 57 53 54 55 56 58 59 61 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 ...
output:
1 0 8531980 0 483646293 601978914 0 0 0 287895946
result:
wrong answer 3rd lines differ - expected: '906525565', found: '8531980'
Test #9:
score: 0
Wrong Answer
time: 6ms
memory: 3612kb
input:
10 1564 511376 1 2 3 4 5 6 8 7 9 10 11 12 13 14 15 16 20 17 18 19 21 22 23 24 25 26 28 27 29 30 31 35 32 33 34 36 41 37 38 39 40 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 76 74 75 77 78 82 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 97 95 96 98 ...
output:
0 302123851 0 0 8951362 0 0 0 0 265798199
result:
wrong answer 2nd lines differ - expected: '207595358', found: '302123851'
Test #10:
score: 0
Wrong Answer
time: 6ms
memory: 3712kb
input:
10 1749 969801 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 34 31 32 33 36 35 37 38 39 40 41 42 43 44 45 46 48 47 49 50 51 54 52 53 55 56 57 58 60 59 61 62 63 64 65 66 67 68 69 70 71 72 73 75 74 76 77 78 79 80 81 82 83 84 85 86 89 87 88 90 91 92 93 94 95 96 97 99 ...
output:
0 0 1 732082037 700447431 0 0 0 0 898962422
result:
wrong answer 4th lines differ - expected: '705667952', found: '732082037'