結果

問題 No.983 Convolution
ユーザー nikutto_nikutto_
提出日時 2020-02-12 19:07:10
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 1,171 bytes
コンパイル時間 6,422 ms
コンパイル使用メモリ 378,672 KB
実行使用メモリ 52,568 KB
最終ジャッジ日時 2024-10-04 03:37:58
合計ジャッジ時間 19,297 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 284 ms
52,408 KB
testcase_01 AC 284 ms
52,516 KB
testcase_02 AC 285 ms
52,532 KB
testcase_03 AC 317 ms
52,324 KB
testcase_04 AC 328 ms
52,504 KB
testcase_05 AC 313 ms
52,568 KB
testcase_06 AC 328 ms
52,452 KB
testcase_07 AC 316 ms
52,384 KB
testcase_08 AC 297 ms
52,344 KB
testcase_09 WA -
testcase_10 AC 292 ms
52,560 KB
testcase_11 AC 299 ms
52,560 KB
testcase_12 AC 307 ms
52,544 KB
testcase_13 AC 291 ms
52,560 KB
testcase_14 AC 291 ms
52,476 KB
testcase_15 WA -
testcase_16 AC 293 ms
52,456 KB
testcase_17 WA -
testcase_18 AC 293 ms
52,472 KB
testcase_19 AC 308 ms
52,532 KB
testcase_20 AC 318 ms
52,484 KB
testcase_21 AC 318 ms
52,524 KB
testcase_22 AC 280 ms
52,528 KB
testcase_23 AC 283 ms
52,568 KB
testcase_24 AC 279 ms
52,560 KB
testcase_25 AC 277 ms
52,376 KB
testcase_26 AC 281 ms
52,480 KB
testcase_27 AC 290 ms
52,444 KB
testcase_28 AC 328 ms
52,528 KB
testcase_29 AC 373 ms
52,536 KB
testcase_30 AC 334 ms
52,564 KB
testcase_31 AC 312 ms
52,544 KB
testcase_32 AC 337 ms
52,464 KB
testcase_33 AC 285 ms
52,500 KB
testcase_34 AC 273 ms
52,440 KB
testcase_35 AC 276 ms
52,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include<boost/multiprecision/cpp_int.hpp>
namespace mp=boost::multiprecision;
using Int=mp::cpp_int;

using ll=Int;
ll mygcd(ll a,ll b){
    return b==0 ? a : mygcd(b,a%b);
}

const int LOG_N=18;
const int MAX_N=1<<LOG_N;
ll B[MAX_N];

ll cross(ll a,ll b){
   return min(a,b)==-1LL ? ll(-1) : a*b;
}
void add(ll& lhs,ll v){
    if(min(lhs,v)==-1) lhs=-1;
    else lhs+=v;
}
void solve(int step,vector<ll> A,int mask){
    if(A.size()==1){
        add(B[mask],cross(A[0],A[0]));
        return;
    }
    vector<ll> odd(A.size()/2);
    for(int i=1;i<A.size();i+=2) odd[i/2]=A[i];
    solve(step+1,odd,mask+(1<<step));

    vector<ll> even(A.size()/2);
    for(int i=0;i<A.size();i++) add(even[i/2],A[i]);
    solve(step+1,even,mask);
}

int main(){
    int n;
    cin>>n;
    vector<ll> A(MAX_N);
    for(int i=0;i<n;i++){
        int tmp;
        cin>>tmp;
        A[i]=tmp;
    }

    solve(0,A,0);

    for(int i=0;i<MAX_N;i++){
        if(B[i]==-1) B[i]=0;
    }

    ll ans=0;
    for(int i=0;i<MAX_N;i++){
        ans=mygcd(ans,B[i]);
    }
    if(ans==0) cout<<-1<<endl;
    else cout<<ans<<endl;
    
    return 0;
}
0