結果
問題 | No.1618 Convolution? |
ユーザー | ytqm3 |
提出日時 | 2021-07-22 21:54:01 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 188 ms / 2,000 ms |
コード長 | 3,458 bytes |
コンパイル時間 | 2,279 ms |
コンパイル使用メモリ | 207,188 KB |
実行使用メモリ | 18,984 KB |
最終ジャッジ日時 | 2024-07-17 17:30:08 |
合計ジャッジ時間 | 8,356 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 88 ms
15,240 KB |
testcase_03 | AC | 106 ms
17,616 KB |
testcase_04 | AC | 109 ms
13,224 KB |
testcase_05 | AC | 11 ms
5,376 KB |
testcase_06 | AC | 145 ms
16,208 KB |
testcase_07 | AC | 141 ms
16,112 KB |
testcase_08 | AC | 112 ms
13,160 KB |
testcase_09 | AC | 170 ms
18,684 KB |
testcase_10 | AC | 123 ms
13,788 KB |
testcase_11 | AC | 161 ms
17,808 KB |
testcase_12 | AC | 188 ms
18,864 KB |
testcase_13 | AC | 179 ms
18,984 KB |
testcase_14 | AC | 183 ms
18,764 KB |
testcase_15 | AC | 182 ms
18,844 KB |
testcase_16 | AC | 180 ms
18,892 KB |
ソースコード
#include<bits/stdc++.h> typedef uint64_t u64; typedef int64_t i64; typedef long double f128; using namespace std; template<u64 mod> struct modint{ u64 val; constexpr modint(const i64 x=0) noexcept:val((x%i64(mod)+i64(mod))%i64(mod)){} constexpr u64 get_mod() const noexcept{ return mod; } constexpr modint operator+(const modint rhs) const noexcept{ return modint(*this)+=rhs; } constexpr modint operator-(const modint rhs) const noexcept{ return modint(*this)-=rhs; } constexpr modint operator*(const modint rhs) const noexcept{ return modint(*this)*=rhs; } constexpr modint operator/(const modint rhs) const noexcept{ return modint(*this)/=rhs; } constexpr modint &operator+=(const modint rhs) noexcept{ val+=rhs.val; val-=((val>=mod)?mod:0); return *this; } constexpr modint &operator-=(const modint rhs) noexcept{ val+=((val<rhs.val)?mod:0); val-=rhs.val; return *this; } constexpr modint &operator*=(const modint rhs) noexcept{ val=val*rhs.val%mod; return *this; } constexpr modint &operator/=(modint rhs) noexcept{ u64 exp=mod-2; while(exp){ if(exp&1){ (*this)*=rhs; } rhs*=rhs; exp>>=1; } return *this; } friend constexpr ostream &operator<<(ostream &os,const modint &x) noexcept{ return os<<(x.val); } friend constexpr istream &operator>>(istream &is,modint &x) noexcept{ u64 t; is>>t; x=t; return is; } }; void scan(){} template<typename T,class... Args> void scan(T& n,Args&... args){ cin>>n; scan(args...); } template<typename T> void scanall(T start,T end){ for(;start!=end;++start){ scan(*start); } } void print(){} template<typename T,class... Args> void print(T n,Args... args){ cout<<n; print(args...); } template<typename T> void println(T n){ cout<<n<<endl; } template<typename T,class... Args> void println(T n,Args... args){ cout<<n<<' '; println(args...); } template<typename T> void printall(T start,T end){ if(start!=end){ cout<<(*start); for(++start;start!=end;++start){ cout<<' '<<(*start); } } cout<<endl; } template<typename T> void chmax(T& n,T m){ n=max(n,m); } template<typename T> void chmin(T& n,T m){ n=min(n,m); } template<typename T> struct combination{ vector<T> fact,fact_inv; combination(int mx=3000000):fact(mx+1,1),fact_inv(mx+1,1){ for(int i=2;i<=mx;++i){ fact[i]=fact[i-1]*i; } fact_inv[mx]/=fact[mx]; for(int i=mx;i>0;--i){ fact_inv[i-1]=fact_inv[i]*i; } } template<typename U> T nCk(U n,U k){ if(n<k||n<0||k<0){ return 0; } return fact[n]*fact_inv[k]*fact_inv[n-k]; } }; void solve(); int main(){ cout<<fixed<<setprecision(15); bool is_multicase=false; int T=1; if(is_multicase){ scan(T); } for(int i=0;i<T;++i){ solve(); } return 0; } void solve(){ int N; scan(N); vector<i64> A(N),B(N); scanall(A.begin(),A.end()); scanall(B.begin(),B.end()); A.resize(2*N-1); B.resize(2*N-1); vector<i64> Acsum(2*N),Bcsum(2*N); for(int i=1;i<2*N;++i){ Acsum[i]=Acsum[i-1]+A[i-1]; Bcsum[i]=Bcsum[i-1]+B[i-1]; } vector<i64> C(2*N-1); C[0]=Acsum[1]+Bcsum[1]; for(int i=1;i<2*N-1;++i){ C[i]+=C[i-1]; C[i]+=Acsum[i+1]+Bcsum[i+1]; if(N<=i){ C[i]-=Acsum[i-N]+Bcsum[i-N]; C[i]-=(N+1)*(A[i-N]+B[i-N]); } } print("0 "); printall(C.begin(),C.end()); }