結果
| 問題 |
No.2578 Jewelry Store
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-01-10 05:26:14 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 2,153 bytes |
| コンパイル時間 | 4,135 ms |
| コンパイル使用メモリ | 91,256 KB |
| 最終ジャッジ日時 | 2025-02-10 01:33:31 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 1 WA * 3 RE * 47 TLE * 2 MLE * 1 |
ソースコード
#include <algorithm>
#include <iostream>
#include <map>
#include <vector>
#include <atcoder/modint>
using mint = atcoder::modint998244353;
std::vector<int64_t> prime_factors(int64_t m) {
std::vector<int64_t> pf;
for (int64_t p = 2; p * p <= m; ++p) {
if (m % p == 0) {
do m /= p; while (m % p == 0);
pf.push_back(p);
}
}
if (m != 1) {
pf.push_back(m);
}
return pf;
}
mint solve(int32_t n, int64_t m, std::vector<int64_t> pf, std::vector<int64_t> a, std::vector<int32_t> w) {
{
std::vector<int64_t> a2;
std::vector<int32_t> w2;
for (int32_t i = 0; i < n; ++i) if (m % a[i] == 0) {
a2.push_back(a[i]);
w2.push_back(w[i]);
}
a.swap(a2);
w.swap(w2);
n = a.size();
}
// A _ i | m for all i
const int32_t k = pf.size();
std::vector<mint> prd(1 << k, 1);
for (int32_t i = 0; i < n; ++i) {
int32_t t = 0;
for (int32_t j = 0; j < k; ++j) {
if ((m / pf[j]) % a[i] == 0) t |= 1 << j;
}
prd[t] *= 1 + w[i];
}
std::vector<std::pair<int32_t, mint>> prd_vec;
for (int32_t s = 0; s < 1 << k; ++s) {
if (prd[s] != 1) prd_vec.emplace_back(s, prd[s]);
}
mint ans = 0;
for (int32_t s = 0; s < 1 << k; ++s) {
mint add = 1;
for (auto [t, pw] : prd_vec) {
if ((s & t) == s) {
add *= pw;
}
}
if ((k - __builtin_popcount(s)) & 1) {
ans -= add;
} else {
ans += add;
}
}
return ans - (m == 1);
}
int main() {
std::ios::sync_with_stdio(false);
std::cin.tie(nullptr);
int32_t t;
int64_t m;
std::cin >> t >> m;
auto pf = prime_factors(m);
for (int32_t testcase = 0; testcase < t; ++testcase) {
int32_t n;
std::cin >> n;
std::vector<int64_t> a(n);
for (auto &e : a) std::cin >> e;
std::vector<int32_t> w(n);
for (auto &e : w) std::cin >> e;
std::cout << solve(n, m, pf, a, w).val() << '\n';
}
return 0;
}