QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#740794 | #9619. 乘积,欧拉函数,求和 | jdyt11 | TL | 268ms | 4096kb | C++20 | 2.4kb | 2024-11-13 11:33:19 | 2024-11-13 11:33:20 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
#define pii pair<int,int>
#define ll long long
#define inf 0x3f3f3f3f
#define ull unsigned long long
#define pll pair<ll,ll>
#define ls d*2
#define rs d*2+1
#define mid (l+r)/2
#define lowbit(x) (x&(-x))
//#define endl "\n"
#define all(x) x.begin(),x.end()
#define int long long
//mt19937 seed;
//uniform_int_distribution<int>num(0,2e9);
const int N=2e5+10;
const int M=33;
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});
}
vector<int> dp(1 << 17);
dp[0] = 1;
for (auto [x, vec] : mp) {
prime[16] = x;
for (auto [nd, sum] : vec) {
if (x != 1)
nd |= 1 << 16;
for (int i = (1 << 17) - 1; i >= 0; i--) {
int nsum = sum, nnd = nd | i;
if ((i & (1 << 16)) != 0)
nsum = (nsum * x) % mod;
else
nsum = (nsum * max(x - 1, 1ll)) % mod;
dp[nnd] = (dp[nnd] + dp[i] * nsum % mod) % mod;
}
}
for (int i = (1 << 16); i < (1 << 17); i++) {
int ni = i ^ (1 << 16);
dp[ni] = (dp[ni] + dp[i]) % mod;
dp[i] = 0;
}
}
int sum = 0;
for (int i = 0; i < (1 << 17); i++) {
for (int j = 0; j < 16; j++) {
if ((i & (1 << j)) != 0) {
dp[i] = (dp[i] * kp(prime[j], mod - 2)) % mod;
dp[i] = (dp[i] * max(prime[j] - 1, 1ll)) % mod;
}
}
sum = (sum + dp[i]) % mod;
}
cout << sum << '\n';
return;
}
signed main(){
ios::sync_with_stdio(false);
cin.tie(0);cout.tie(0);
int _=1;//cin>>_;
while(_--){
solve();
}
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 268ms
memory: 4096kb
input:
5 1 6 8 6 2
output:
892
result:
ok single line: '892'
Test #2:
score: 0
Accepted
time: 267ms
memory: 4096kb
input:
5 3 8 3 7 8
output:
3157
result:
ok single line: '3157'
Test #3:
score: -100
Time Limit Exceeded
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...