結果

問題 No.1730 GCD on Blackboard in yukicoder
ユーザー norikamenorikame
提出日時 2021-11-12 16:03:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,141 bytes
コンパイル時間 2,325 ms
コンパイル使用メモリ 210,448 KB
実行使用メモリ 24,484 KB
最終ジャッジ日時 2024-11-25 03:29:21
合計ジャッジ時間 30,063 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 240 ms
13,640 KB
testcase_01 AC 2 ms
13,640 KB
testcase_02 AC 2 ms
13,640 KB
testcase_03 AC 4 ms
23,204 KB
testcase_04 AC 3 ms
13,636 KB
testcase_05 AC 4 ms
23,204 KB
testcase_06 AC 3 ms
13,636 KB
testcase_07 AC 3 ms
13,764 KB
testcase_08 AC 3 ms
13,644 KB
testcase_09 AC 2 ms
23,336 KB
testcase_10 AC 7 ms
13,644 KB
testcase_11 AC 2 ms
24,480 KB
testcase_12 AC 2 ms
13,640 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 245 ms
6,820 KB
testcase_21 AC 256 ms
6,816 KB
testcase_22 AC 239 ms
6,820 KB
testcase_23 AC 232 ms
6,816 KB
testcase_24 AC 235 ms
6,816 KB
testcase_25 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using ll = long long;

#define rep(i, n) for (int i=0; i<(int)(n); ++(i))
#define rep3(i, m, n) for (int i=(m); (i)<(int)(n); ++(i))
#define repr(i, n) for (int i=(int)(n)-1; (i)>=0; --(i))
#define rep3r(i, m, n) for (int i=(int)(n)-1; (i)>=(int)(m); --(i))
#define all(x) (x).begin(), (x).end()

// 

ll gcd(ll a, ll b) { return (b ? gcd(b, a%b) : a); }

int main() {
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int n;
	cin >> n;
	vector<ll> a(n);
	rep(i, n) cin >> a[i];
	map<ll, int> avals;
	rep(i, n) avals[a[i]]++;
	int alen = avals.size();
	map<ll, int> gvals;
	for (auto pi : avals) {
		map<ll, int> adds;
		adds[pi.first] = pi.second;
		for (auto itr=gvals.begin(); itr!=gvals.end(); ++itr) {
			ll gval = gcd(itr->first, pi.first);
			adds[gval] = max(adds[gval], itr->second+pi.second);
		}
		for (auto api : adds) gvals[api.first] = max(gvals[api.first], api.second);
	}
	vector<ll> mvals(n+1);
	for (auto pi : gvals) mvals[pi.second] = max(mvals[pi.second], pi.first);
	repr(i, n) mvals[i] = max(mvals[i], mvals[i+1]);
	rep3r(i, 1, n+1) cout << mvals[i] << endl;
	return 0;
}
0