結果

問題 No.1036 Make One With GCD 2
ユーザー rabimearabimea
提出日時 2023-02-28 22:26:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 486 ms / 2,000 ms
コード長 1,039 bytes
コンパイル時間 2,083 ms
コンパイル使用メモリ 202,372 KB
実行使用メモリ 73,600 KB
最終ジャッジ日時 2024-09-16 00:17:11
合計ジャッジ時間 15,938 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 486 ms
73,472 KB
testcase_01 AC 284 ms
73,472 KB
testcase_02 AC 201 ms
73,472 KB
testcase_03 AC 72 ms
27,264 KB
testcase_04 AC 128 ms
47,744 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 112 ms
31,488 KB
testcase_08 AC 91 ms
25,984 KB
testcase_09 AC 294 ms
71,936 KB
testcase_10 AC 271 ms
66,816 KB
testcase_11 AC 300 ms
73,344 KB
testcase_12 AC 274 ms
67,584 KB
testcase_13 AC 369 ms
70,016 KB
testcase_14 AC 374 ms
70,912 KB
testcase_15 AC 349 ms
66,304 KB
testcase_16 AC 352 ms
67,072 KB
testcase_17 AC 363 ms
68,992 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 3 ms
5,376 KB
testcase_20 AC 4 ms
5,376 KB
testcase_21 AC 3 ms
5,376 KB
testcase_22 AC 349 ms
65,536 KB
testcase_23 AC 256 ms
47,872 KB
testcase_24 AC 367 ms
68,096 KB
testcase_25 AC 332 ms
62,080 KB
testcase_26 AC 346 ms
64,384 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 2 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 3 ms
5,376 KB
testcase_38 AC 202 ms
73,472 KB
testcase_39 AC 464 ms
73,600 KB
testcase_40 AC 255 ms
48,000 KB
testcase_41 AC 458 ms
73,472 KB
testcase_42 AC 445 ms
73,472 KB
testcase_43 AC 455 ms
73,472 KB
testcase_44 AC 480 ms
73,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define pb push_back
using ll = long long;
using vi = vector <int>;
using pii = pair <int, int>;
const ll mod = 998244353;
//~ const ll mod = 1e9 + 7;
ll qpow(ll a, ll b, ll m = mod) { ll r = 1, t = a;
	for(; b; b /= 2) { if(b & 1) r = r * t % m; t = t * t % m; } return r; }

const int N = 5e5 + 11;
const int LOGN = 22;
ll st[LOGN][N];
 
ll query(int l, int r) {
	int b = __lg(r - l + 1);
	return gcd(st[b][l], st[b][r - (1 << b) + 1]);
}
 
int main() {
	ios::sync_with_stdio(0);
	
	int n; cin >> n;
	for(int i = 1; i <= n; i ++)
		cin >> st[0][i];
	
	for(int k = 1; k < LOGN; k ++) {
		for(int i = 1; i <= n; i ++)
			if(i + (1 << k) <= n + 1) {
				st[k][i] = gcd(st[k - 1][i], st[k - 1][i + (1 << (k - 1))]);
			}
	}
	
	ll ans = 0;
	
	for(int i = 1; i <= n; i ++) {
		if(query(i, n) == 1) {
			int l = i, r = n + 1;
			while(l + 1 < r) {
				int m = (l + r) / 2;
				if(query(i, m - 1) == 1)
					r = m;
				else
					l = m;
			}
			
			ans += n - l + 1;
		}
	}
	
	cout << ans << '\n';
}
0