QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#739119#9619. 乘积,欧拉函数,求和qstbcdWA 640ms4632kbC++232.0kb2024-11-12 20:55:302024-11-12 20:55:31

Judging History

你现在查看的是最新测评结果

  • [2024-11-12 20:55:31]
  • 评测
  • 测评结果:WA
  • 用时:640ms
  • 内存:4632kb
  • [2024-11-12 20:55:30]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
#define int long long
const int N = 2e5 + 5;
const int mod = 998244353;
int __t = 1, n;
int prime[20] = {2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 1};
int kp(int a, int b) {
    int res = 1;
    while (b) {
        if (b & 1)
            res = res * a % mod;
        a = a * a % mod;
        b >>= 1;
    }
    return res;
}
void solve() {
    map<int, vector<pair<int, int>>> mp;
    cin >> n;
    for (int i = 1; i <= n; i++) {
        int x;
        cin >> x;
        int nd = 0, sum = 1;
        for (int i = 0; i < 16; i++) {
            while (x % prime[i] == 0) {
                x /= prime[i];
                sum = (sum * prime[i]) % mod;
                nd |= (1 << i);
            }
        }
        mp[x].push_back({nd, sum});
    }
    map<int, int, greater<int>> dp;
    dp[0] = 1;
    for (auto [x, vec] : mp) {
        prime[16] = x;
        for (auto [nd, sum] : vec) {
            if (x != 1)
                nd |= 1 << 16;
            for (auto [i, dpi] : dp) {
                int nnd = nd | i;
                dp[nnd] = (dp[nnd] + dpi * sum % mod) % mod;
            }
        }
        vector<int> del;
        for (auto [i, dpi] : dp) {
            if ((i & (1 << 16)) != 0) {
                dp[i ^ (1 << 16)] = (dp[i ^ (1 << 16)] + dpi) % mod;
                del.push_back(i);
            } else
                break;
        }
        for (auto i : del)
            dp.erase(i);
    }
    int sum = 0;
    for (auto [i, dpi] : dp) {
        int x = dpi;
        for (int j = 0; j < 16; j++) {
            if ((i & (1 << j)) != 0) {
                x = x * kp(prime[j], mod - 2) % mod;
                x = x * (prime[j] - 1) % mod;
            }
        }
        sum = (sum + x) % mod;
    }
    cout << sum << '\n';
    return;
}
int32_t main() {
#ifdef ONLINE_JUDGE
    ios::sync_with_stdio(false);
    cin.tie(0);
#endif
    // cin >> __t;
    while (__t--)
        solve();
    return 0;
}

详细

Test #1:

score: 100
Accepted
time: 0ms
memory: 3556kb

input:

5
1 6 8 6 2

output:

892

result:

ok single line: '892'

Test #2:

score: 0
Accepted
time: 0ms
memory: 3616kb

input:

5
3 8 3 7 8

output:

3157

result:

ok single line: '3157'

Test #3:

score: -100
Wrong Answer
time: 640ms
memory: 4632kb

input:

2000
79 1 1 1 1 1 1 2803 1 1 1 1 1 1 1609 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2137 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 613 1 499 1 211 1 2927 1 1 1327 1 1 1123 1 907 1 2543 1 1 1 311 2683 1 1 1 1 2963 1 1 1 641 761 1 1 1 1 1 1 1 1 1 1 1 1489 2857 1 1 1 1 1 1 1 1 1 1 1 1 1 967 1 821 1 1 1 1 2143 1861...

output:

156105996

result:

wrong answer 1st lines differ - expected: '50965652', found: '156105996'