結果

問題 No.1097 Remainder Operation
ユーザー kyoprounokyoprouno
提出日時 2020-06-26 22:48:48
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 474 ms / 2,000 ms
コード長 1,875 bytes
コンパイル時間 1,963 ms
コンパイル使用メモリ 181,112 KB
実行使用メモリ 84,620 KB
最終ジャッジ日時 2023-09-18 06:40:07
合計ジャッジ時間 8,335 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 2 ms
4,380 KB
testcase_07 AC 36 ms
11,440 KB
testcase_08 AC 36 ms
11,420 KB
testcase_09 AC 36 ms
11,356 KB
testcase_10 AC 36 ms
11,308 KB
testcase_11 AC 35 ms
11,724 KB
testcase_12 AC 371 ms
84,308 KB
testcase_13 AC 392 ms
84,380 KB
testcase_14 AC 424 ms
84,300 KB
testcase_15 AC 448 ms
84,460 KB
testcase_16 AC 389 ms
84,424 KB
testcase_17 AC 319 ms
84,300 KB
testcase_18 AC 304 ms
84,396 KB
testcase_19 AC 351 ms
84,384 KB
testcase_20 AC 349 ms
84,308 KB
testcase_21 AC 474 ms
84,348 KB
testcase_22 AC 472 ms
84,620 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