結果

問題 No.1307 Rotate and Accumulate
ユーザー 👑 kmjpkmjp
提出日時 2020-12-04 00:08:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 411 ms / 5,000 ms
コード長 1,984 bytes
コンパイル時間 2,256 ms
コンパイル使用メモリ 205,568 KB
実行使用メモリ 73,036 KB
最終ジャッジ日時 2023-10-12 10:44:12
合計ジャッジ時間 7,727 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 1 ms
4,352 KB
testcase_03 AC 2 ms
4,356 KB
testcase_04 AC 2 ms
4,352 KB
testcase_05 AC 2 ms
4,352 KB
testcase_06 AC 1 ms
4,352 KB
testcase_07 AC 2 ms
4,348 KB
testcase_08 AC 380 ms
65,104 KB
testcase_09 AC 371 ms
65,748 KB
testcase_10 AC 190 ms
36,488 KB
testcase_11 AC 184 ms
42,128 KB
testcase_12 AC 188 ms
37,564 KB
testcase_13 AC 29 ms
7,288 KB
testcase_14 AC 93 ms
19,984 KB
testcase_15 AC 411 ms
73,036 KB
testcase_16 AC 410 ms
72,552 KB
testcase_17 AC 411 ms
72,740 KB
testcase_18 AC 388 ms
72,628 KB
testcase_19 AC 395 ms
73,000 KB
testcase_20 AC 380 ms
71,632 KB
testcase_21 AC 2 ms
4,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0