結果
問題 | No.1097 Remainder Operation |
ユーザー | hipotaf_cpp |
提出日時 | 2020-10-20 16:38:43 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,611 bytes |
コンパイル時間 | 881 ms |
コンパイル使用メモリ | 87,892 KB |
実行使用メモリ | 169,472 KB |
最終ジャッジ日時 | 2024-07-21 08:23:23 |
合計ジャッジ時間 | 6,395 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,752 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 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 | 42 ms
19,328 KB |
testcase_08 | AC | 43 ms
19,396 KB |
testcase_09 | AC | 41 ms
19,392 KB |
testcase_10 | AC | 41 ms
19,396 KB |
testcase_11 | AC | 41 ms
19,328 KB |
testcase_12 | TLE | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
ソースコード
#include <iostream> #include <string> #include <algorithm> #include <cmath> #include <vector> #include <set> #include <map> #include <numeric> using namespace std; using ll = long long; #define REP(i,n) for(ll i=0;i<(ll)(n);i++) #define REPD(i,n) for(ll i=n-1;i>=0;i--) #define FOR(i,a,b) for(ll i=a;i<=(ll)(b);i++) #define FORD(i,a,b) for(ll i=a;i>=(ll)(b);i--) #define input(...) __VA_ARGS__; in(__VA_ARGS__) #if __has_include("debugger.cpp") #include "debugger.cpp" #else void print() { std::cout << std::endl; } template <class Head, class... Tail> void print(Head&& head, Tail&&... tail) { cout << head; if (sizeof...(tail) > 0) cout << " "; print(std::forward<Tail>(tail)...); } # endif void in() { } template <class Head, class... Tail> void in(Head&& head, Tail&&... tail) { cin >> head; in(std::forward<Tail>(tail)...); } vector<ll> a; ll n; struct Ret { ll position, over; }; vector<vector<Ret>> table; #define DP table[i][k] Ret dfs(ll i, ll k) { i %= n; if (DP.position != -1) return DP; if (k == 0) return DP = {(i + a[i]) % n, a[i] + i}; Ret left = dfs(i, k - 1); Ret right = dfs(left.position, k - 1); return DP = {right.position, left.over + right.over - left.position}; } int main() { cin >> n; a = vector<ll>(n); REP(i, n) cin >> a[i]; ll input(q); table = vector<vector<Ret>>(n + 1, vector<Ret>(100, {-1, -1})); REP(j, q) { ll input(k); ll t = 1; while (1 << t < k) t++; ll ans = 0; REP(i, t + 1) { if (k & 1) { ans = dfs(ans, i).over + (ans - ans % n); } k >>= 1; } print(ans); } }