結果

問題 No.1618 Convolution?
ユーザー MtSakaMtSaka
提出日時 2021-07-22 21:31:22
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 500 ms / 2,000 ms
コード長 2,801 bytes
コンパイル時間 4,444 ms
コンパイル使用メモリ 262,132 KB
実行使用メモリ 25,412 KB
最終ジャッジ日時 2023-09-24 15:51:32
合計ジャッジ時間 14,889 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 403 ms
21,016 KB
testcase_03 AC 421 ms
23,864 KB
testcase_04 AC 269 ms
16,940 KB
testcase_05 AC 27 ms
4,376 KB
testcase_06 AC 453 ms
21,804 KB
testcase_07 AC 457 ms
21,896 KB
testcase_08 AC 272 ms
16,988 KB
testcase_09 AC 491 ms
25,236 KB
testcase_10 AC 420 ms
18,972 KB
testcase_11 AC 479 ms
24,016 KB
testcase_12 AC 500 ms
25,332 KB
testcase_13 AC 495 ms
25,412 KB
testcase_14 AC 492 ms
25,364 KB
testcase_15 AC 496 ms
25,308 KB
testcase_16 AC 496 ms
25,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//GIVE ME AC!!!!!!!!!!!!!!!!!
//#pragma GCC target("avx")
//#pragma GCC optimize("O3")
//#pragma GCC optimize("unroll-loops")
#include<bits/stdc++.h>
#include<atcoder/all>
#define ll long long
#define ld long double
#define floatset() fixed<<setprecision(15)
#define all(n) n.begin(),n.end()
#define rall(n) n.rbegin(),n.rend()
#define rep(i, s, n) for (ll i = s; i < (ll)(n); i++)
#define pb push_back
#define eb emplace_back
#define max_(a) *max_element(all(a))
#define min_(a) *min_element(all(a))
#define INT(...) int __VA_ARGS__;scan(__VA_ARGS__)
#define LL(...) ll __VA_ARGS__;scan(__VA_ARGS__)
#define STR(...) string __VA_ARGS__;scan(__VA_ARGS__)
#define CHR(...) char __VA_ARGS__;scan(__VA_ARGS__)
#define DBL(...) double __VA_ARGS__;scan(__VA_ARGS__)
#define LD(...) ld __VA_ARGS__;scan(__VA_ARGS__)
using namespace std;
using namespace atcoder;
using vl=vector<ll>;
using vi=vector<int>;
using vs=vector<string>;
using vc=vector<char>;
using vvl=vector<vl>;
using P=pair<ll,ll>;
using vvc=vector<vc>;
using vd=vector<double>;
using vp=vector<P>;
using vb=vector<bool>;
const int dx[8]={1,0,-1,0,1,-1,-1,1};
const int dy[8]={0,1,0,-1,1,1,-1,-1};
const ll inf=2e18;
const ll MOD=1000000007;
const ll mod=998244353;
const double pi=acos(-1);
template<typename T1,typename T2 >
ostream &operator<<(ostream&os,const pair<T1,T2>&p) {
  os<<p.first<<" "<<p.second;
  return os;
}
template<typename T1,typename T2>
istream &operator>>(istream&is,pair<T1,T2>&p) {
  is>>p.first>>p.second;
  return is;
}
template<typename T>
ostream &operator<<(ostream&os,const vector<T>&v) {
  for(int i=0;i<(int)v.size();i++) {
    os<<v[i]<<(i+1!=v.size()?" ":"");
  }
  return os;
}
template<typename T>
istream &operator>>(istream&is,vector<T>&v) {
  for(T &in:v)is>>in;
  return is;
}
void scan(){}
template<class Head,class... Tail>
void scan(Head&head,Tail&... tail) {
  cin>>head;
  scan(tail...);
}
template<class T>
void print(const T &t) { cout << t << '\n'; }
template<class Head, class... Tail>
void print(const Head &head, const Tail &... tail) {
  cout << head << ' ';
  print(tail...);
}
template<class... T>
void fin(const T &... a) {
  print(a...);
  exit(0);
}
template<typename T>
ll sum_(vector<T>&v){
  ll res=0;
  for(auto &e:v)res+=e;
  return res;
}
template<typename T1,typename T2>
inline bool chmax(T1&a,T2 b){return a<b&&(a=b,true);}
template<typename T1,typename T2>
inline bool chmin(T1&a,T2 b){return a>b&&(a=b,true);}
int main(){
  LL(n);
  vector<ll>a,b;
  a.pb(0),b.pb(0);
  rep(i,0,n){
    LL(x);
    a.pb(x);
  }
  rep(i,0,n){
    LL(x);
    b.pb(x);
  }
  vector<ll>v(n+1);
  rep(i,0,n+1){
    v[i]=i;
  }
  vector<ll>ans1=convolution_ll(v,a);
  vector<ll>ans2=convolution_ll(v,b);
  vector<ll>ans(2*n);
  rep(i,1,2*n+1){
    ans[i-1]=ans1[i]+ans2[i];
  }
  cout<<ans<<endl;
}
0