結果
問題 | No.1307 Rotate and Accumulate |
ユーザー | kyoprouno |
提出日時 | 2020-12-04 21:39:35 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 415 ms / 5,000 ms |
コード長 | 2,639 bytes |
コンパイル時間 | 2,122 ms |
コンパイル使用メモリ | 183,940 KB |
実行使用メモリ | 22,956 KB |
最終ジャッジ日時 | 2024-09-15 08:20:34 |
合計ジャッジ時間 | 7,720 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 392 ms
21,320 KB |
testcase_09 | AC | 397 ms
21,388 KB |
testcase_10 | AC | 204 ms
13,628 KB |
testcase_11 | AC | 195 ms
12,860 KB |
testcase_12 | AC | 202 ms
13,420 KB |
testcase_13 | AC | 31 ms
6,944 KB |
testcase_14 | AC | 99 ms
8,528 KB |
testcase_15 | AC | 408 ms
22,832 KB |
testcase_16 | AC | 415 ms
22,832 KB |
testcase_17 | AC | 412 ms
22,836 KB |
testcase_18 | AC | 397 ms
22,956 KB |
testcase_19 | AC | 406 ms
22,836 KB |
testcase_20 | AC | 407 ms
22,836 KB |
testcase_21 | AC | 2 ms
6,940 KB |
ソースコード
#pragma GCC optimize("O3") #include <bits/stdc++.h> #define ll long long #define rep(i,n) for(ll i=0;i<(n);i++) #define pll pair<ll,ll> #define pii pair<int,int> #define pq priority_queue #define pb push_back #define eb emplace_back #define fi first #define se second #define endl '\n' #define ios ios_base::sync_with_stdio(0),cin.tie(0),cout.tie(0); #define lb(c,x) distance(c.begin(),lower_bound(all(c),x)) #define ub(c,x) distance(c.begin(),upper_bound(all(c),x)) using namespace std; inline int topbit(unsigned long long x){ return x?63-__builtin_clzll(x):-1; } inline int popcount(unsigned long long x){ return __builtin_popcountll(x); } inline int parity(unsigned long long x){//popcount%2 return __builtin_parity(x); } template<class T> inline bool chmax(T& a,T b){if(a<b){a=b;return 1;}return 0;} template<class T> inline bool chmin(T& a,T b){if(a>b){a=b;return 1;}return 0;} const ll INF=1e9+7; int n; int m=1; vector<complex<double>> f,g; struct FastFourierTransform{ static void dft(vector<complex<double>>& func, int inverse){ int sz=func.size(); if(sz==1) return ; vector<complex<double>> veca, vecb; rep(i,sz/2){ veca.push_back(func[2*i]); vecb.push_back(func[2*i+1]); } dft(veca, inverse); dft(vecb, inverse); complex<double> now=1,zeta=polar(1.0, inverse*2.0*acos(-1)/sz); rep(i,sz){ func[i]=veca[i%(sz/2)]+now*vecb[i%(sz/2)]; now*=zeta; } } template<typename T> static vector<double> multiply(vector<T> f,vector<T> g){ vector<complex<double>> nf, ng; int sz=1; while(sz<f.size()+g.size())sz*=2; nf.resize(sz); ng.resize(sz); rep(i,f.size()){ nf[i]=f[i]; ng[i]=g[i]; } dft(nf,1); dft(ng,1); rep(i,sz) nf[i]*=ng[i]; dft(nf,-1); vector<double> res; rep(i,sz)res.push_back(nf[i].real()/sz); return res; } }; int main(){ ios; ll n,q; cin >> n >> q; vector<ll> a(n); vector<ll> r(q); vector<ll> ans(n); rep(i,n){ cin >> a[i]; } rep(i,q){ cin >> r[i]; } while(m<2*n) m*=2; f.resize(m); g.resize(m); rep(i,n){ f[i]=a[i]; } rep(j,q){ g[(n-r[j])%n]+=1; } FastFourierTransform FFT; FFT.dft(f,1); FFT.dft(g,1); rep(i,m){ f[i]*=g[i]; } FFT.dft(f,-1); rep(i,m){ ans[i%n]+=(int)(f[i].real()/m+0.1); } rep(i,n){ if(i) cout << " "; cout << ans[i]; } cout << endl; return 0; }