結果

問題 No.983 Convolution
ユーザー やむなくやむなく
提出日時 2020-02-11 14:40:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,266 bytes
コンパイル時間 1,784 ms
コンパイル使用メモリ 170,616 KB
実行使用メモリ 7,552 KB
最終ジャッジ日時 2024-04-08 15:09:05
合計ジャッジ時間 3,943 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,676 KB
testcase_01 AC 2 ms
6,676 KB
testcase_02 AC 2 ms
6,676 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 22 ms
6,676 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 51 ms
6,912 KB
testcase_18 AC 10 ms
6,676 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 58 ms
6,676 KB
testcase_22 AC 12 ms
6,676 KB
testcase_23 AC 32 ms
6,676 KB
testcase_24 AC 9 ms
6,676 KB
testcase_25 AC 7 ms
6,676 KB
testcase_26 AC 21 ms
6,676 KB
testcase_27 AC 17 ms
6,676 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 2 ms
6,676 KB
testcase_34 AC 1 ms
6,676 KB
testcase_35 AC 2 ms
6,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//
// Created by yamunaku on 2020/02/11.
//

#include <bits/stdc++.h>

using namespace std;

#define rep(i, n) for(int i = 0; i < (n); i++)
#define repl(i, l, r) for(int i = (l); i < (r); i++)
#define per(i, n) for(int i = ((n)-1); i >= 0; i--)
#define perl(i, l, r) for(int i = ((r)-1); i >= (l); i--)
#define all(x) (x).begin(),(x).end()
#define MOD9 998244353
#define MOD1 1000000007
#define IINF 1000000000
#define LINF 1000000000000000000
#define SP <<" "<<
#define CYES cout<<"Yes"<<endl
#define CNO cout<<"No"<<endl
#define CFS cin.tie(0);ios::sync_with_stdio(false)
#define CST(x) cout<<fixed<<setprecision(x)

using ll = long long;
using ld = long double;
using vi = vector<int>;
using mti = vector<vector<int>>;
using vl = vector<ll>;
using mtl = vector<vector<ll>>;
using pi = pair<int, int>;
using pl = pair<ll, ll>;
template<typename T>
using heap = priority_queue<T, vector<T>, function<bool(const T, const T)>>;

ll gcd(ll x, ll y){
    if(y == 0) return x;
    ll tmp;
    while(x % y){
        tmp = x % y;
        x = y;
        y = tmp;
    }
    return y;
}

ll lcm(ll x, ll y){
    return x / gcd(x, y) * y;
}


int main(){
    // CFS;
    int n;
    cin >> n;
    vl a(n);
    rep(i, n){
        cin >> a[i];
        if(a[i] == -1) a[i] = 0;
    }
    int lg = 0, tmp = 1;
    while(n > tmp) lg++, tmp *= 2;
    rep(t, lg){
        rep(i, n){
            if((i & (1 << t)) == 0){
                if((i ^ (1 << t)) < n) a[i] += a[i ^ (1 << t)];
            }
        }
    }
    vl b(n), c(n);
    const ll m = 100000000000;
    rep(i, n){
        b[i] = a[i] / m;
        a[i] = a[i] % m;

        c[i] = b[i] * b[i];
        b[i] = 2 * a[i] * b[i];
        a[i] = a[i] * a[i];
//        a[i] = a[i] * a[i]; // ここオーバーフロー
    }
    rep(t, lg){
        rep(i, n){
            if((i & (1 << t)) == 0){
                if((i ^ (1 << t)) < n){
                    c[i] -= c[i ^ (1 << t)];
                    b[i] -= b[i ^ (1 << t)];
                    a[i] -= a[i ^ (1 << t)];
                }
            }
        }
    }
    ll ans = (c[0] * m + b[0]) * m + a[0];
    repl(i, 1, n){
        ans = gcd(ans, (c[i] * m + b[i]) * m + a[i]);
    }
    if(ans == 0) cout << -1 << endl;
    else cout << ans << endl;
    return 0;
}
0