結果
問題 | No.1097 Remainder Operation |
ユーザー | le_panda_noir |
提出日時 | 2020-07-19 11:53:42 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 255 ms / 2,000 ms |
コード長 | 2,330 bytes |
コンパイル時間 | 1,205 ms |
コンパイル使用メモリ | 115,956 KB |
実行使用メモリ | 9,052 KB |
最終ジャッジ日時 | 2024-12-16 05:41:10 |
合計ジャッジ時間 | 5,857 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 23 ms
6,816 KB |
testcase_08 | AC | 23 ms
6,816 KB |
testcase_09 | AC | 23 ms
6,820 KB |
testcase_10 | AC | 23 ms
6,816 KB |
testcase_11 | AC | 23 ms
6,816 KB |
testcase_12 | AC | 217 ms
6,816 KB |
testcase_13 | AC | 227 ms
6,816 KB |
testcase_14 | AC | 218 ms
6,820 KB |
testcase_15 | AC | 219 ms
6,816 KB |
testcase_16 | AC | 218 ms
6,820 KB |
testcase_17 | AC | 225 ms
6,816 KB |
testcase_18 | AC | 255 ms
9,048 KB |
testcase_19 | AC | 246 ms
9,044 KB |
testcase_20 | AC | 244 ms
9,052 KB |
testcase_21 | AC | 245 ms
9,044 KB |
testcase_22 | AC | 249 ms
9,048 KB |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:76:53: warning: 'period' may be used uninitialized [-Wmaybe-uninitialized] 76 | ans += (X.back() - X[margin]) * ((k - margin) / period); | ^~~~~~ main.cpp:51:15: note: 'period' was declared here 51 | int margin, period; | ^~~~~~ main.cpp:76:43: warning: 'margin' may be used uninitialized [-Wmaybe-uninitialized] 76 | ans += (X.back() - X[margin]) * ((k - margin) / period); | ^~~~~~ main.cpp:51:7: note: 'margin' was declared here 51 | int margin, period; | ^~~~~~
ソースコード
#include <iostream> #include <algorithm> #include <vector> #include <queue> #include <map> #include <set> #include <cmath> #include <iomanip> using namespace std; using ll = long long; using vi = vector<int>; #define in(v) v; cin >> v; void ins() {} template<class T,class... Rest>void ins(T& v,Rest&... rest){cin>>v;ins(rest...);} #define rep(i,n) for(int i=0,_i=(n);i<_i;++i) #define rrep(i,n) for(long long i=(n);i>=0;--i) #define all(f,c,...) (([&](decltype((c)) cccc) { return (f)(begin(cccc), end(cccc), ## __VA_ARGS__); })(c)) // ========== debug ========== template<class T>ostream& operator<<(ostream& os,const vector<T>& vec){os<<"{";for(size_t i=0;i<vec.size();++i)os<<(i?", ":"")<<vec[i];os<<"}";return os;} ostream& operator<<(ostream& os,const vector<char>&v){for(size_t i=0;i<v.size();++i)os<<v[i];return os;} template<class T1,class T2>ostream& operator<<(ostream& os,const pair<T1,T2>& rhs){os<<"("<<rhs.first<<", "<<rhs.second<<")";return os;} #ifdef LOCAL void debug() {cerr << "\n";} template<class First> void debug(const First& first) {cerr<<first<<"\n";} template<class First, class... Rest> void debug(const First& first, const Rest&... rest) {cerr<<first<<",";debug(rest...);} void debug2() {cerr << "\n";} template<class First> void debug2(const First& first) {cerr<<first<<" ";} template<class First, class... Rest> void debug2(const First& first, const Rest&... rest) {cerr<<first<<" ";debug2(rest...);} #else #define debug(...) 42 #define debug2(...) 42 #endif // =========================== int main() { int N; cin >> N; vi A(N); rep(i, N) { cin >> A[i]; } int Q; cin >> Q; ll sum = 0; vector<ll> X; set<int> st; int margin, period; rep(i, 2*N) { if (st.find(sum % N) != st.end()) { X.push_back(sum); rep(j, X.size()) { if (X[j] % N == sum % N) { margin = j; period = i - j; break; } } break; } st.insert(sum % N); X.push_back(sum); sum += A[sum % N]; } debug(X, margin, period); rep(i, Q) { ll k; cin >> k; if (k < X.size()) { cout << X[k] << endl; continue; } ll ans = X[margin]; ans += (X.back() - X[margin]) * ((k - margin) / period); ans += X[(k - margin) % period + margin] - X[margin]; cout << ans << endl; } return 0; }