結果

問題 No.1036 Make One With GCD 2
ユーザー kya_skikya_ski
提出日時 2020-06-09 17:20:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 509 ms / 2,000 ms
コード長 1,865 bytes
コンパイル時間 2,359 ms
コンパイル使用メモリ 210,192 KB
実行使用メモリ 15,616 KB
最終ジャッジ日時 2024-09-16 14:25:11
合計ジャッジ時間 15,733 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 345 ms
7,680 KB
testcase_01 AC 295 ms
7,296 KB
testcase_02 AC 358 ms
15,616 KB
testcase_03 AC 32 ms
5,376 KB
testcase_04 AC 54 ms
5,888 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 109 ms
5,376 KB
testcase_08 AC 88 ms
5,376 KB
testcase_09 AC 313 ms
7,168 KB
testcase_10 AC 284 ms
6,912 KB
testcase_11 AC 313 ms
7,168 KB
testcase_12 AC 286 ms
6,912 KB
testcase_13 AC 495 ms
6,912 KB
testcase_14 AC 509 ms
7,168 KB
testcase_15 AC 474 ms
6,784 KB
testcase_16 AC 488 ms
6,912 KB
testcase_17 AC 492 ms
7,040 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 3 ms
5,376 KB
testcase_22 AC 471 ms
6,656 KB
testcase_23 AC 347 ms
5,760 KB
testcase_24 AC 484 ms
6,912 KB
testcase_25 AC 438 ms
6,528 KB
testcase_26 AC 452 ms
6,656 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 1 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
testcase_34 AC 2 ms
5,376 KB
testcase_35 AC 2 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 2 ms
5,376 KB
testcase_38 AC 351 ms
15,616 KB
testcase_39 AC 363 ms
7,296 KB
testcase_40 AC 344 ms
5,760 KB
testcase_41 AC 399 ms
7,168 KB
testcase_42 AC 393 ms
7,168 KB
testcase_43 AC 397 ms
9,472 KB
testcase_44 AC 404 ms
8,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

template<class T>
struct queue_aggregation {
	using F = function<T(T, T)>;
	using value_type = T;
private : 
	struct node {
		value_type val, sum;
		node (const value_type &val, const value_type &sum) : val(val), sum(sum) { }
	};
	const F f;
	stack<node> front_stack, back_stack;

public : 
	queue_aggregation (const F &f) : f(f), front_stack(), back_stack() { }

	constexpr bool empty () const noexcept {
		return (front_stack.empty() and back_stack.empty());
	}

	constexpr size_t size () const noexcept {
		return (front_stack.size() + back_stack.size());
	}

	void push (const value_type &x) {
		if (back_stack.empty()) {
			back_stack.emplace(x, x);
		} else {
			value_type s = f(back_stack.top().sum, x);
			back_stack.emplace(x, s);
		}
	}

	void pop () {
		assert(not empty());
		if (front_stack.empty()) {
			front_stack.emplace(back_stack.top().val, back_stack.top().val);
			back_stack.pop();
			while (not back_stack.empty()) {
				value_type s = f(back_stack.top().val, front_stack.top().sum);
				front_stack.emplace(back_stack.top().val, s);
				back_stack.pop();
			}
		}
		front_stack.pop();
	}

	value_type fold () {
		assert(not empty());
		if (front_stack.empty()) {
			return (back_stack.top().sum);
		} else if (back_stack.empty()) {
			return (front_stack.top().sum);
		} else {
			return (f(front_stack.top().sum, back_stack.top().sum));
		}
	}

};


int main() {
	int n;
	cin >> n;
	vector<long long> a(n);
	for (int i = 0; i < n; i++) {
		cin >> a[i];
	}
	
	queue_aggregation<long long> que([](long long a, long long b) { return gcd(a, b); });
	
	long long ans = 0;
	for (int l = 0, r = 0; l < n; l++) {
		while ((que.empty() or que.fold() > 1) and r < n) que.push(a[r++]);
		if (not que.empty() and que.fold() == 1) ans += (n - r + 1);
		que.pop();
	}
	
	cout << ans << '\n';
	
	return 0;
}
0