結果

問題 No.1097 Remainder Operation
ユーザー e869120e869120
提出日時 2020-06-26 21:36:19
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 223 ms / 2,000 ms
コード長 901 bytes
コンパイル時間 754 ms
コンパイル使用メモリ 85,788 KB
実行使用メモリ 6,124 KB
最終ジャッジ日時 2024-07-04 19:57:19
合計ジャッジ時間 5,233 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <map>
#include <queue>
#include <cmath>
#include <string>
#include <vector>
#include <algorithm>
#include <functional>
using namespace std;
#pragma warning (disable: 4996)

long long N, Q, K;
long long A[1 << 18];
long long used[1 << 18];

int main() {
	cin >> N;
	for (int i = 0; i < N; i++) cin >> A[i];
	for (int i = 0; i < N; i++) used[i] = -1;

	vector<long long> v1; long long cx = 0, cnt = 0, pre = 0;
	while (true) {
		v1.push_back(cx); used[cx % N] = cnt;
		cx += A[cx % N]; cnt += 1;
		if (used[cx % N] != -1) {
			pre = used[cx % N];
			break;
		}
	}

	cin >> Q;
	for (int i = 1; i <= Q; i++) {
		cin >> K;
		if (K < pre) {
			cout << v1[K] << endl;
		}
		else {
			long long E1 = ((K - pre) / (long long)(v1.size() - pre));
			long long E2 = ((K - pre) % (long long)(v1.size() - pre));
			cout << E1 * (cx - v1[pre]) + v1[E2 + pre] << endl;
		}
	}
	return 0;
}
0