結果
問題 | No.1036 Make One With GCD 2 |
ユーザー | polyomino_24 |
提出日時 | 2020-04-26 17:39:56 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,824 bytes |
コンパイル時間 | 1,509 ms |
コンパイル使用メモリ | 134,636 KB |
実行使用メモリ | 11,520 KB |
最終ジャッジ日時 | 2024-11-17 14:53:05 |
合計ジャッジ時間 | 6,183 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 22 ms
11,264 KB |
testcase_03 | AC | 15 ms
6,820 KB |
testcase_04 | AC | 24 ms
6,820 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 235 ms
6,816 KB |
testcase_10 | AC | 219 ms
6,820 KB |
testcase_11 | AC | 238 ms
6,816 KB |
testcase_12 | AC | 221 ms
6,820 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 2 ms
6,816 KB |
testcase_19 | AC | 2 ms
6,820 KB |
testcase_20 | AC | 2 ms
6,820 KB |
testcase_21 | AC | 2 ms
6,820 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 2 ms
6,816 KB |
testcase_28 | AC | 2 ms
6,820 KB |
testcase_29 | AC | 2 ms
6,820 KB |
testcase_30 | AC | 2 ms
6,820 KB |
testcase_31 | AC | 2 ms
6,816 KB |
testcase_32 | AC | 2 ms
6,816 KB |
testcase_33 | AC | 2 ms
6,820 KB |
testcase_34 | AC | 2 ms
6,816 KB |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
ソースコード
#include <algorithm> #include <bitset> #include <cassert> #include <cctype> #include <climits> #include <cmath> #include <complex> #include <cstdio> #include <cstring> #include <deque> #include <functional> #include <iomanip> #include <iostream> #include <map> #include <numeric> #include <queue> #include <random> #include <set> #include <stack> #include <string> #include <tuple> #include <vector> #include <list> #include <array> #define rep(i, n) for (int i = 0; i < (int)(n); ++i) //#define cerr if(false) cerr #ifdef DEBUG #define show(...) cerr << #__VA_ARGS__ << " = ", debug(__VA_ARGS__) #else #define show(...) 42 #endif using namespace std; using ll = long long; using pii = pair<int, int>; template <typename T, typename S> ostream& operator<<(ostream& os, pair<T, S> a) { os << '(' << a.first << ',' << a.second << ')'; return os; } template <typename T> ostream& operator<<(ostream& os, vector<T> v) { for (auto x : v) os << x << ' '; return os; } void debug() { cerr << '\n'; } template <typename H, typename... T> void debug(H a, T... b) { cerr << a; if (sizeof...(b)) cerr << ", "; debug(b...); } template<typename T> T gcd(T a, T b){ while(b){ a %= b; swap(a, b); } return a; } struct TwoStacks{ using T = long long; struct Node{ T val, sum; Node(const T &val, const T &sum):val(val), sum(sum){} }; T merge(T l, T r){ return gcd(l, r); } stack<Node> front, back; int size(){ return front.size() + back.size(); } T eval(){ // assert(front.size() + back.size() > 0); if(!back.empty()){ if(!front.empty()){ return merge(front.top().sum, back.top().sum); }else{ return back.top().sum; } }else{ return front.top().sum; } } void pop_front(){ // assert(front.size() + back.size() > 0); if(front.empty()){ front.emplace(back.top().val, back.top().val); back.pop(); while(!back.empty()){ front.emplace(back.top().val, merge(back.top().val, front.top().sum)); back.pop(); } } front.pop(); } void push_back(const T &val){ if(!back.empty()){ back.emplace(val, merge(back.top().sum, val)); }else{ back.emplace(val, val); } } }; int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); int n; cin >> n; ll ans = (ll)n * (n + 1) / 2; TwoStacks ts; rep(i,n){ int x; cin >> x; ts.push_back(x); while(ts.size() and ts.eval()==1){ ts.pop_front(); } ans -= ts.size(); } cout << ans << endl; }