結果

問題 No.1097 Remainder Operation
ユーザー kyoprounokyoprouno
提出日時 2020-06-26 22:48:48
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 465 ms / 2,000 ms
コード長 1,875 bytes
コンパイル時間 1,941 ms
コンパイル使用メモリ 183,164 KB
実行使用メモリ 84,736 KB
最終ジャッジ日時 2024-07-04 22:50:27
合計ジャッジ時間 7,875 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 34 ms
11,520 KB
testcase_08 AC 35 ms
11,648 KB
testcase_09 AC 33 ms
11,520 KB
testcase_10 AC 35 ms
11,520 KB
testcase_11 AC 35 ms
11,520 KB
testcase_12 AC 357 ms
84,608 KB
testcase_13 AC 378 ms
84,480 KB
testcase_14 AC 383 ms
84,608 KB
testcase_15 AC 406 ms
84,608 KB
testcase_16 AC 367 ms
84,608 KB
testcase_17 AC 310 ms
84,608 KB
testcase_18 AC 290 ms
84,736 KB
testcase_19 AC 341 ms
84,608 KB
testcase_20 AC 340 ms
84,480 KB
testcase_21 AC 465 ms
84,608 KB
testcase_22 AC 463 ms
84,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("O3")
#include <bits/stdc++.h>
#define ll long long
#define rep(i,n) for(ll i=0;i<(n);i++)
#define pll pair<ll,ll>
#define pq priority_queue
#define pb push_back
#define eb emplace_back
#define fi first
#define se second
#define ios ios_base::sync_with_stdio(0),cin.tie(0),cout.tie(0);
#define lb(c,x) distance(c.begin(),lower_bound(all(c),x))
#define ub(c,x) distance(c.begin(),upper_bound(all(c),x))

using namespace std;

template<class T> inline bool chmax(T& a,T b){if(a<b){a=b;return 1;}return 0;}
template<class T> inline bool chmin(T& a,T b){if(a>b){a=b;return 1;}return 0;}

const ll INF=1e18;

int main(){
    ll n;
    cin >> n;
    vector<ll> a(n),to(n);
    vector<vector<pll>> lca(50,vector<pll>(n));
    rep(i,n){
        cin >> a[i];
    }
    for(ll i=0;i<n;i++){
        ll p=i+a[i];
        to[i]=p;
    }
    for(ll i=0;i<50;i++){
        if(i==0){
            rep(j,n){
                lca[i][j].fi=to[j]%n;
                lca[i][j].se=a[j];
            }
            continue;
        }
        rep(j,n){
            lca[i][j].fi=lca[i-1][lca[i-1][j].fi].fi;
            lca[i][j].se=lca[i-1][j].se+lca[i-1][lca[i-1][j].fi].se;
        }
    }
    ll q;
    cin >> q;
    vector<ll> db(50);
    ll v=1;
    rep(i,50){
        db[i]=v;
        v*=2;
    }
    /*rep(i,50){
        rep(j,n){
            if(j) cout << " ";
            cout << lca[i][j].se;
        }
        cout << endl;
    }*/
    rep(i,q){
        ll k;
        cin >> k;
        vector<ll> t(50);
        ll num=49;
        while(k){
            if(k>=db[num]){
                k-=db[num];
                t[num]=1;
            }
            num--;
        }
        ll ans=0;
        ll r=0;
        rep(j,50){
            if(t[j]){
                ans+=lca[j][r].se;
                r=lca[j][r].fi;
            }
        }
        cout << ans << endl;
    }
}
0