結果
| 問題 |
No.1307 Rotate and Accumulate
|
| コンテスト | |
| ユーザー |
kmjp
|
| 提出日時 | 2020-12-04 00:08:44 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 467 ms / 5,000 ms |
| コード長 | 1,984 bytes |
| コンパイル時間 | 2,446 ms |
| コンパイル使用メモリ | 202,292 KB |
| 最終ジャッジ日時 | 2025-01-16 14:56:33 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 19 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;
#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define FORR2(x,y,arr) for(auto& [x,y]:arr)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
template<class T> bool chmax(T &a, const T &b) { if(a<b){a=b;return 1;}return 0;}
template<class T> bool chmin(T &a, const T &b) { if(a>b){a=b;return 1;}return 0;}
//-------------------------------------------------------
typedef complex<long double> Comp;
vector<Comp> fft(vector<Comp> v, bool rev=false) {
int n=v.size(),i,j,m;
for(i=0,j=1;j<n-1;j++) {
for(int k=n>>1;k>(i^=k);k>>=1);
if(i>j) swap(v[i],v[j]);
}
for(int m=2; m<=n; m*=2) {
double deg=(rev?-1:1) * 2*acos(-1)/m;
Comp wr(cos(deg),sin(deg));
for(i=0;i<n;i+=m) {
Comp w(1,0);
for(int j1=i,j2=i+m/2;j2<i+m;j1++,j2++) {
Comp t1=v[j1],t2=w*v[j2];
v[j1]=t1+t2, v[j2]=t1-t2;
w*=wr;
}
}
}
if(rev) FOR(i,n) v[i]*=1.0/n;
return v;
}
vector<Comp> MultPoly(vector<Comp> P,vector<Comp> Q,bool resize=false) {
if(resize) {
int maxind=0,pi=0,qi=0,i;
int s=2;
FOR(i,P.size()) if(norm(P[i])) pi=i;
FOR(i,Q.size()) if(norm(Q[i])) qi=i;
maxind=pi+qi+1;
while(s*2<maxind) s*=2;
P.resize(s*2);Q.resize(s*2);
}
P=fft(P), Q=fft(Q);
for(int i=0;i<P.size();i++) P[i]*=Q[i];
return fft(P,true);
}
int N,Q;
vector<Comp> A,B;
void solve() {
int i,j,k,l,r,x,y; string s;
cin>>N>>Q;
A.resize(3*N);
B.resize(3*N);
FOR(i,N) {
cin>>x;
A[i]=A[i+N]=A[i+2*N]=x;
}
FOR(i,Q) {
cin>>x;
B[N-x]+=1;
}
A=MultPoly(A,B,true);
FOR(i,N) cout<<(ll)round(A[2*N+i].real())<<" ";
cout<<endl;
}
int main(int argc,char** argv){
string s;int i;
if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
cout.tie(0); solve(); return 0;
}
kmjp