結果
問題 | No.2952 Invision of Multiples |
ユーザー | a1048576 |
提出日時 | 2024-10-25 22:35:58 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,615 bytes |
コンパイル時間 | 4,349 ms |
コンパイル使用メモリ | 245,264 KB |
実行使用メモリ | 80,164 KB |
最終ジャッジ日時 | 2024-10-25 22:36:12 |
合計ジャッジ時間 | 10,827 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,824 KB |
testcase_02 | AC | 5 ms
6,820 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | TLE | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
ソースコード
#include<bits/stdc++.h> using namespace std; #include <atcoder/all> using namespace atcoder; using mint = modint998244353; #define int long long int gcd_f(int x, int y) { if(x < y) swap(x,y); if(y == 0) return x; if(x%y == 0) return y; else return gcd_f(y,x%y); } struct Segtree { vector<vector<mint>> num; vector<int> p; int n; Segtree(int N) { n = N; num.resize(n); p.resize(n+1); p[0] = 1; for(int i = 0; i < n; i++) p[i+1] = p[i]*2; for(int i = 0; i < n; i++) num[i].assign(p[i],0); } void add(int x, mint y) { num[n-1][x] = num[n-1][x]+y; int t = x; for(int i = n-2; i >= 0; i--) { t/=2; num[i][t] = num[i+1][t*2]+num[i+1][t*2+1]; } } mint sum_calc(int t, int l, int r, int x, int y) { int m = (l+r)/2; if(t == n) return 0; if(x <= l && r <= y) return num[t][l/p[n-t-1]]; if(r <= x || y <= l) return 0; return sum_calc(t+1,l,m,x,y)+sum_calc(t+1,m,r,x,y); } mint sum(int l, int r) { return sum_calc(0,0,p[n-1],l,r); } }; int m; signed main() { int n; cin >> n >> m; vector<int> a(n); for(int i = 0; i < n; i++) cin >> a[i]; int e = 500; mint ans = 0; vector<mint> g(n+1,1),h(n,0), h2(n); for(int i = 0; i < n; i++) h[i] = m/a[i], g[i+1] = g[i]*h[i], h2[i] = mint(1)/h[i]; vector<vector<int>> c(m+1); e = min(e,m); vector<vector<mint>> c2(e+1,vector<mint>(n+1,0)); for(int i = 0; i < n; i++) { c[a[i]].push_back(i); if(a[i] <= e) c2[a[i]][i+1]+=h2[i]; for(int j = 1; j <= e; j++) c2[j][i+1]+=c2[j][i]; } for(int i = 0; i < n; i++) { for(int j = 1; j <= e; j++) { int z = m/a[i]; int L = c[j].size(); mint u = c2[j][n]-c2[j][i+1]; int x = a[i]*j/gcd_f(a[i],j); ans+=(floor_sum(z,j,a[i],a[i])-m/x)*g[n]*u*h2[i]; //cout << i << ' ' << j << ' ' << ans.val() << endl; } } for(int i = 0; i < n; i++) { if(a[i] <= e) continue; for(int j = 1; j <= e; j++) { int z = m/j; int L = c[j].size(); mint u = c2[j][i]; int x = (a[i]*j/gcd_f(a[i],j)); ans+=(floor_sum(z,j,a[i],a[i])-m/x)*g[n]*u*h2[i]; //cout << i << ' ' << j << ' ' << ans.val() << endl; } } vector<vector<int>> s(m+1); for(int i = 0; i < n; i++) { if(a[i] <= e) continue; for(int j = a[i]; j <= m; j+=a[i]) s[j].push_back(i); } Segtree seg(17); for(int i = e+1; i <= m; i++) { int l = s[i].size(); //cout << l << endl; for(int j = 0; j < l; j++) ans+=seg.sum(s[i][j]+1,n)*g[n]*h2[s[i][j]]; for(int j = 0; j < l; j++) seg.add(s[i][j],h2[s[i][j]]); } cout << ans.val() << endl; }