結果

問題 No.917 Make One With GCD
ユーザー leaf_1415leaf_1415
提出日時 2019-10-25 22:44:04
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 8 ms / 2,000 ms
コード長 1,166 bytes
コンパイル時間 798 ms
コンパイル使用メモリ 80,040 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-06 16:40:03
合計ジャッジ時間 2,211 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
4,380 KB
testcase_01 AC 1 ms
4,376 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 4 ms
4,376 KB
testcase_04 AC 4 ms
4,380 KB
testcase_05 AC 6 ms
4,376 KB
testcase_06 AC 7 ms
4,380 KB
testcase_07 AC 8 ms
4,376 KB
testcase_08 AC 3 ms
4,376 KB
testcase_09 AC 7 ms
4,376 KB
testcase_10 AC 8 ms
4,376 KB
testcase_11 AC 7 ms
4,380 KB
testcase_12 AC 8 ms
4,376 KB
testcase_13 AC 7 ms
4,380 KB
testcase_14 AC 7 ms
4,376 KB
testcase_15 AC 6 ms
4,376 KB
testcase_16 AC 6 ms
4,380 KB
testcase_17 AC 2 ms
4,380 KB
testcase_18 AC 6 ms
4,376 KB
testcase_19 AC 2 ms
4,376 KB
testcase_20 AC 3 ms
4,380 KB
testcase_21 AC 5 ms
4,376 KB
testcase_22 AC 4 ms
4,380 KB
testcase_23 AC 7 ms
4,380 KB
testcase_24 AC 5 ms
4,376 KB
testcase_25 AC 6 ms
4,376 KB
testcase_26 AC 2 ms
4,380 KB
testcase_27 AC 2 ms
4,376 KB
testcase_28 AC 2 ms
4,376 KB
testcase_29 AC 2 ms
4,380 KB
testcase_30 AC 3 ms
4,376 KB
testcase_31 AC 2 ms
4,376 KB
testcase_32 AC 2 ms
4,380 KB
testcase_33 AC 2 ms
4,380 KB
testcase_34 AC 2 ms
4,376 KB
testcase_35 AC 2 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <unordered_map>
#define llint long long

using namespace std;

llint n;
llint a[55];
vector<llint> vec[55];
llint dp[55][1<<10];
unordered_map<llint, llint> mp;

int main(void)
{
	ios::sync_with_stdio(0);
	cin.tie(0);
	
	cin >> n;
	for(int i = 1; i <= n; i++) cin >> a[i];
	
	for(int i = 1; i <= n; i++){
		llint t = a[i];
		for(int j = 2; j < 10005; j++){
			bool flag = false;
			while(t % j == 0){
				if(!flag) vec[i].push_back(j);
				flag = true;
				t /= j;
			}
		}
		if(t > 1) vec[i].push_back(t);
	}
	
	llint ans = 0;
	for(int s = 1; s <= n; s++){
		llint m = vec[s].size(), M = 1<<m;
		mp.clear();
		for(int i = 0; i < vec[s].size(); i++) mp[vec[s][i]] = i;
		
		for(int i = 1; i <= n; i++){
			for(int j = 0; j < M; j++){
				dp[i][j] = 0;
			}
		}
		dp[s][M-1] = 1;
		
		for(int i = s; i < n; i++){
			llint mask = 0;
			for(int j = 0; j < vec[i+1].size(); j++){
				if(mp.count(vec[i+1][j])) mask |= 1<<mp[vec[i+1][j]];
			}
			for(int j = 0; j < M; j++){
				dp[i+1][j] += dp[i][j];
				dp[i+1][j&mask] += dp[i][j];
			}
		}
		ans += dp[n][0];
	}
	cout << ans << endl;
	
	return 0;
}
0