結果
問題 | No.1097 Remainder Operation |
ユーザー | outline |
提出日時 | 2020-12-14 10:00:06 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,097 bytes |
コンパイル時間 | 1,672 ms |
コンパイル使用メモリ | 144,256 KB |
実行使用メモリ | 26,380 KB |
最終ジャッジ日時 | 2024-09-20 00:35:47 |
合計ジャッジ時間 | 3,934 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 63 ms
22,324 KB |
testcase_18 | AC | 56 ms
20,400 KB |
testcase_19 | AC | 63 ms
26,256 KB |
testcase_20 | AC | 65 ms
26,380 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <cmath> #include <queue> #include <string> #include <map> #include <set> #include <stack> #include <tuple> #include <deque> #include <array> #include <numeric> #include <bitset> #include <iomanip> #include <cassert> #include <chrono> #include <random> #include <limits> #include <iterator> #include <functional> #include <sstream> #include <fstream> #include <complex> #include <cstring> #include <unordered_map> using namespace std; using ll = long long; using P = pair<int, int>; constexpr int INF = 1001001001; constexpr int mod = 1000000007; // constexpr int mod = 998244353; template<class T> inline bool chmax(T& x, T y){ if(x < y){ x = y; return true; } return false; } template<class T> inline bool chmin(T& x, T y){ if(x > y){ x = y; return true; } return false; } constexpr int MAX = 2e+6 + 1; constexpr ll MAXK = 1e+12; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int N, Q; cin >> N; vector<ll> A(N); for(int i = 0; i < N; ++i) cin >> A[i]; vector<vector<int>> graph(N), rev(N); for(int i = 0; i < N; ++i){ int j = (i + A[i]) % N; graph[i].emplace_back(j); rev[j].emplace_back(i); } vector<int> vs, used(N); auto dfs = [&](auto&& self, int from) -> void { used[from] = true; for(int to : graph[from]){ if(!used[to]) self(self, to); } vs.emplace_back(from); }; for(int v = 0; v < N; ++v){ if(!used[v]) dfs(dfs, v); } reverse(vs.begin(), vs.end()); int scc_num = 0; vector<int> scc_id(N, -1); auto rdfs = [&](auto&& self, int from) -> void { scc_id[from] = scc_num; for(int to : rev[from]){ if(scc_id[to] == -1) self(self, to); } }; for(int v : vs){ if(scc_id[v] == -1){ rdfs(rdfs, v); scc_num += 1; } } vector<vector<int>> scc_group(scc_num); vector<ll> sum(scc_num); for(int v = 0; v < N; ++v){ scc_group[scc_id[v]].emplace_back(v); sum[scc_id[v]] += A[v]; } int u = 0; vector<ll> path_sum(1, 0); while(u != graph[u][0] && scc_group[scc_id[u]].size() == 1){ path_sum.emplace_back(path_sum.back() + A[u]); u = graph[u][0]; } vector<ll> loop_sum(1, 0); loop_sum.emplace_back(A[u]); int cur = graph[u][0]; while(cur != u){ loop_sum.emplace_back(A[cur]); cur = graph[cur][0]; } cin >> Q; for(int i = 0; i < Q; ++i){ ll K; cin >> K; if(K < (ll)path_sum.size()){ cout << path_sum[K] << '\n'; continue; } int v = u; ll ans = path_sum.back(); K -= (ll)path_sum.size() - 1; int sz = scc_group[scc_id[v]].size(); ll loop_cnt = K / sz; ans += sum[scc_id[v]] * loop_cnt; K -= loop_cnt * sz; ans += loop_sum[K]; cout << ans << '\n'; } return 0; }