QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#570495 | #9309. Graph | lprdsb | WA | 16ms | 116316kb | C++14 | 4.2kb | 2024-09-17 16:07:53 | 2024-09-17 16:07:54 |
Judging History
answer
#include<bits/stdc++.h>
#define For(i, a, b) for(LL i = (a), en = (b); i <= en; ++i)
#define Rof(i, a, b) for(LL i = (a), en = (b); i >= en; --i)
#define Tra(u, i) for(int i = hd[u]; ~i; i = e[i].net)
#define cst const
#define LL long long
#define DD double
#define LD long double
#define pb push_back
#define mp make_pair
#define fir first
#define sec second
#define inf 0x3f3f3f3f
#define Inf 0x3f3f3f3f3f3f3f3f
#define eps 1e-12
#define maxn 1000000
#define maxm 1000000000ll
using namespace std;
#define mod 1000000007
int pri[maxn + 5], cnt = 0, vis[maxn + 5];
template<class T>
T fp(T x, LL y) {
T asi = 1;
while(y) {
if(y & 1) asi *= x;
x *= x;
y >>= 1;
}
return asi;
}
template<int P>
struct Mint {
int x;
Mint() { x = 0; }
Mint(LL _x) : x{ norm(_x % P) } {}
int norm(LL _x) {
if(_x < 0) _x += P;
if(_x >= P) _x -= P;
return _x;
}
Mint inv() { return fp(*this, P - 2); }
Mint operator - () { return { P - x }; }
Mint& operator += (Mint _x) & {
x = norm(x + _x.x);
return *this;
}
Mint& operator -= (Mint _x) & {
x = norm(x - _x.x);
return *this;
}
Mint& operator *= (Mint _x) & {
x = 1ll * x * _x.x % P;
return *this;
}
Mint& operator /= (Mint _x) & { return *this *= _x.inv(); }
friend Mint operator + (Mint _x, Mint _y) { return _x += _y; }
friend Mint operator - (Mint _x, Mint _y) { return _x -= _y; }
friend Mint operator * (Mint _x, Mint _y) { return _x *= _y; }
friend Mint operator / (Mint _x, Mint _y) { return _x /= _y; }
friend bool operator == (Mint _x, Mint _y) { return _x.x == _y.x; }
};
const int P = 998244353;
using Z = Mint<P>;
class Sieve {
public:
int to[maxn + 5], tot = 0, k_n[maxn + 5];
LL N;
LL sum_f_p[maxn + 5];
map<int, int> id;
vector<int> vG[maxn + 5];
vector<LL> G[maxn + 5];
LL get_g(LL x) {
//
return 1;
}
Sieve() {}
void init(LL _N) {
N = _N;
tot = 0;
For(i, 1, N) {
++tot;
id[to[tot] = N / i] = tot;
i = N / (N / i);
}
int now = cnt;
For(i, 1, tot) {
while(1ll * pri[now] * pri[now] > to[i]) now--;
G[i].clear();
G[i].resize(now + 5, 0);
vG[i].clear();
vG[i].resize(now + 5, 0);
k_n[i] = now;
}
For(i, 1, cnt) sum_f_p[i] = sum_f_p[i - 1] + get_g(pri[i]);
}
LL get_G(int n_id, int k) {
if(pri[k] > to[n_id]) return get_g(1);
if(k == 1) {
LL tmp = to[n_id];
return to[n_id];
}
if(1ll * pri[k - 1] * pri[k - 1] > to[n_id]) return get_G(n_id, k_n[n_id] + 1) - (sum_f_p[k - 1] - sum_f_p[k_n[n_id]]);
if(vG[n_id][k]) return G[n_id][k];
vG[n_id][k] = 1;
LL asi = get_G(n_id, k - 1) - get_g(pri[k - 1]) * get_G(id[to[n_id] / pri[k - 1]], k - 1);
return G[n_id][k] = asi;
}
LL get_s(LL n) {
// cout << k_n[n] << endl;
return k_n[id[n]] + get_G(id[n], k_n[id[n]] + 1);
}
} sieve[2];
template <class T>
void read(T &x) {
char ch;
bool ok;
for(ok = 0, ch = getchar(); !isdigit(ch); ch = getchar()) if(ch == '-') ok = 1;
for(x = 0; isdigit(ch); x = x * 10 + ch - '0', ch = getchar());
if(ok) x = -x;
}
int main() {
// freopen("in.txt", "r", stdin);
For(i, 2, maxn) {
if(!vis[i]) pri[++cnt] = i;
for(int j = 1; j <= cnt && i * pri[j] <= maxn; ++j) {
vis[i * pri[j]] = 1;
if(i % pri[j] == 0) break;
}
}
LL n = 4;
read(n);
sieve[0].init(n); sieve[1].init(n / 2);
Z res = 1;
for(LL i = 1; i <= n; ++i) {
LL now = n / i, to = n / now;
if(now <= 2) break;
LL tmp = sieve[0].get_s(now) - sieve[1].get_s(now / 2);
res *= fp(fp(Z{ now }, tmp) * Z { now - tmp - 1 }, to - i + 1);
// cout << now << " " << tmp << " " << res.x << endl;
i = to;
}
cout << res.x << endl;
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 16ms
memory: 112120kb
input:
4
output:
8
result:
ok answer is '8'
Test #2:
score: 0
Accepted
time: 11ms
memory: 116316kb
input:
2
output:
1
result:
ok answer is '1'
Test #3:
score: -100
Wrong Answer
time: 8ms
memory: 114072kb
input:
123
output:
0
result:
wrong answer expected '671840470', found '0'