結果

問題 No.1006 Share an Integer
ユーザー KKT89KKT89
提出日時 2020-06-09 02:28:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 535 ms / 2,000 ms
コード長 1,085 bytes
コンパイル時間 805 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 12,264 KB
最終ジャッジ日時 2024-06-09 08:14:18
合計ジャッジ時間 6,450 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
12,140 KB
testcase_01 AC 17 ms
12,132 KB
testcase_02 AC 17 ms
12,140 KB
testcase_03 AC 16 ms
12,136 KB
testcase_04 AC 17 ms
12,132 KB
testcase_05 AC 15 ms
12,264 KB
testcase_06 AC 17 ms
12,052 KB
testcase_07 AC 17 ms
12,136 KB
testcase_08 AC 16 ms
12,140 KB
testcase_09 AC 18 ms
12,136 KB
testcase_10 AC 17 ms
12,132 KB
testcase_11 AC 288 ms
12,132 KB
testcase_12 AC 487 ms
12,132 KB
testcase_13 AC 528 ms
12,136 KB
testcase_14 AC 525 ms
12,140 KB
testcase_15 AC 448 ms
12,264 KB
testcase_16 AC 213 ms
12,136 KB
testcase_17 AC 291 ms
12,136 KB
testcase_18 AC 455 ms
12,264 KB
testcase_19 AC 430 ms
12,136 KB
testcase_20 AC 463 ms
12,136 KB
testcase_21 AC 535 ms
12,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
typedef long long int ll;

int main(){
	cin.tie(nullptr);
	ios::sync_with_stdio(false);
	int n; cin >> n;
	vector<int> p,lp(2e6+1);
	// lp[i]: iの最小素因数
	lp[0]=lp[1]=-1;
	for(int i=2;i<lp.size();i++){
		if(lp[i]==0){
			lp[i]=i;
			p.push_back(i);
		}
		for(int j=0;j<p.size()&&p[j]<=lp[i]&&i*p[j]<=lp.size();j++){
			lp[i*p[j]]=p[j];
		}
	}
	// xを素因数分解して返す
	auto pfact=[&](int x){
		vector<pair<int,int>> vec;
		while(x>1){
			if(vec.empty()||vec.back().first!=lp[x]){
				vec.push_back({lp[x],1});
			}
			else{
				vec.back().second++;
			}
			x/=lp[x];
		}
		return vec;
	};
	vector<pair<int,int>> res;
	int ans=1e9;
	for(int i=1;i<n;i++){
		int j=n-i;
		auto p=pfact(i),q=pfact(j);
		int x=1,y=1;
		for(auto pp:p){
			x*=(pp.second+1);
		}
		for(auto qq:q){
			y*=(qq.second+1);
		}
		int cost=abs((i-x)-(j-y));
		if(ans>cost){
			ans=cost;
			res.clear();
		}
		if(ans==cost){
			res.push_back({i,j});
		}
	}
	for(auto v:res){
		printf("%d %d\n",v.first,v.second);
	}
}
0