結果
問題 | No.1036 Make One With GCD 2 |
ユーザー | snrnsidy |
提出日時 | 2021-03-31 21:12:01 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,171 bytes |
コンパイル時間 | 1,427 ms |
コンパイル使用メモリ | 124,660 KB |
実行使用メモリ | 25,256 KB |
最終ジャッジ日時 | 2024-12-15 13:38:25 |
合計ジャッジ時間 | 84,713 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | TLE | - |
testcase_02 | AC | 331 ms
18,464 KB |
testcase_03 | AC | 1,302 ms
15,112 KB |
testcase_04 | TLE | - |
testcase_05 | AC | 2 ms
17,940 KB |
testcase_06 | AC | 2 ms
13,640 KB |
testcase_07 | AC | 1,621 ms
15,364 KB |
testcase_08 | AC | 1,292 ms
14,468 KB |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | AC | 6 ms
17,796 KB |
testcase_19 | AC | 10 ms
13,632 KB |
testcase_20 | AC | 18 ms
17,792 KB |
testcase_21 | AC | 16 ms
13,640 KB |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
testcase_27 | AC | 2 ms
13,636 KB |
testcase_28 | AC | 2 ms
18,220 KB |
testcase_29 | AC | 2 ms
13,644 KB |
testcase_30 | AC | 1 ms
13,760 KB |
testcase_31 | AC | 2 ms
13,636 KB |
testcase_32 | AC | 2 ms
18,224 KB |
testcase_33 | AC | 1 ms
13,764 KB |
testcase_34 | AC | 2 ms
6,816 KB |
testcase_35 | AC | 1 ms
6,816 KB |
testcase_36 | AC | 2 ms
6,820 KB |
testcase_37 | AC | 2 ms
6,816 KB |
testcase_38 | AC | 333 ms
11,584 KB |
testcase_39 | TLE | - |
testcase_40 | TLE | - |
testcase_41 | TLE | - |
testcase_42 | TLE | - |
testcase_43 | TLE | - |
testcase_44 | TLE | - |
ソースコード
#include <map> #include <set> #include <list> #include <cmath> #include <ctime> #include <deque> #include <queue> #include <stack> #include <bitset> #include <map> #include <set> #include <list> #include <cmath> #include <ctime> #include <deque> #include <queue> #include <stack> #include <bitset> #include <cstdio> #include <limits> #include <vector> #include <cstdlib> #include <numeric> #include <sstream> #include <iostream> #include <algorithm> #include <functional> #include <iomanip> #include <unordered_map> #include <memory.h> #include <unordered_set> #include <fstream> using namespace std; #define PI 3.141592653589793 #define MAX 1000000001 const int Mod = 100000007; long long int tree[1 << 20]; long long int gcd(long long int a, long long int b) { if (b == 0) { return a; } return gcd(b, a % b); } long long int update(int nodenum, int start, int end) { if (start == end) { return tree[nodenum]; } int mid = (start + end) / 2; return tree[nodenum] = gcd(update(2 * nodenum, start, mid), update(2 * nodenum + 1, mid + 1, end)); } long long int find(int from, int to, int nodenum, int start, int end) { if (to < start || end < from) { return 0; } if (from <= start && end <= to) { return tree[nodenum]; } int mid = (start + end) / 2; return gcd(find(from, to, 2 * nodenum, start, mid), find(from, to, (2 * nodenum + 1), mid + 1, end)); } int main(void) { cin.tie(0); ios::sync_with_stdio(false); int size, n, a, b; cin >> n; size = ceil(log2(n)); size = pow(2, size); for (int i = 0; i < n; i++) { cin >> tree[size + i]; } update(1, 1, size); long long int res = 0; for (int i = 1; i <= n; i++) { if (find(i, n, 1, 1, size) != 1) { continue; } int lo = i; int hi = n; int m = 1e9; while (lo <= hi) { int mid = (lo + hi) / 2; long long int g = find(i, mid, 1, 1, size); //cout << i << ' ' << mid << ' ' << g << '\n'; if (g == 1) { m = min(mid, m); hi = mid - 1; } else { lo = mid + 1; } } if (m == 1e9) { continue; } //cout << m << ' ' << i << '\n'; long long int len = n - m + 1; res += len; } cout << res << '\n'; return 0; }