結果

問題 No.1097 Remainder Operation
ユーザー saxofone111saxofone111
提出日時 2021-03-13 14:44:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 657 ms / 2,000 ms
コード長 1,350 bytes
コンパイル時間 3,050 ms
コンパイル使用メモリ 207,080 KB
実行使用メモリ 70,528 KB
最終ジャッジ日時 2024-10-15 06:18:15
合計ジャッジ時間 10,713 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 3 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 3 ms
5,248 KB
testcase_07 AC 35 ms
9,984 KB
testcase_08 AC 34 ms
10,020 KB
testcase_09 AC 34 ms
9,984 KB
testcase_10 AC 35 ms
10,112 KB
testcase_11 AC 35 ms
10,020 KB
testcase_12 AC 394 ms
70,528 KB
testcase_13 AC 389 ms
70,272 KB
testcase_14 AC 397 ms
70,400 KB
testcase_15 AC 417 ms
70,400 KB
testcase_16 AC 387 ms
70,400 KB
testcase_17 AC 358 ms
70,528 KB
testcase_18 AC 361 ms
70,528 KB
testcase_19 AC 420 ms
70,400 KB
testcase_20 AC 417 ms
70,400 KB
testcase_21 AC 640 ms
70,400 KB
testcase_22 AC 657 ms
70,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"

#define MOD 1000000007
#define rep(i, n) for(ll i=0; i < (n); i++)
#define rrep(i, n) for(ll i=(n)-1; i >=0; i--)
#define ALL(v) v.begin(),v.end()
#define rALL(v) v.rbegin(),v.rend()
#define FOR(i, j, k) for(ll i=j;i<k;i++)
#define debug_print(var) cerr << #var << "=" << var <<endl;
#define DUMP(i, v)for(ll i=0;i<v.size();i++)cerr<<v[i]<<" "
#define fi first
#define se second

using namespace std;
typedef long long int ll;
typedef vector<ll> llvec;
typedef vector<double> dvec;
typedef pair<ll, ll> P;
typedef long double ld;
struct edge{ll x, c;};

/**************************************
** A main function starts from here  **
***************************************/
int main(){
  ll N;
  cin >> N;
  llvec A(N);
  rep(i, N)cin >> A[i];
  vector<vector<P>> p(N, vector<P>(40));
  
  rep(i, N){
    p[i][0] = {(i+A[i])%N, (i+A[i])/N};
  }
  rep(k, 39){
    rep(i, N){
      auto ip = p[i][k];
      ll prev = ip.fi;
      ll s = ip.se;
      p[i][k+1] = {p[prev][k].fi, s + p[prev][k].se};
    }
  }
  
  ll Q;
  cin >> Q;
  while(Q--){
    ll K;
    cin >> K;
    ll cur = 0;
    ll r = 0;
    rep(k, 40){
      if(K>>k&1){
        r += p[cur][k].se;
        cur = p[cur][k].fi;
        //        cerr << "\t" << cur << " " << r << endl;
      }
      //K>>1;
    }
    cout << cur + r*N<<endl;
  }
  
  return 0;
}
0