結果
問題 | No.1006 Share an Integer |
ユーザー | bond_cmprog |
提出日時 | 2020-03-06 22:39:07 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 707 ms / 2,000 ms |
コード長 | 2,448 bytes |
コンパイル時間 | 1,979 ms |
コンパイル使用メモリ | 183,100 KB |
実行使用メモリ | 11,112 KB |
最終ジャッジ日時 | 2024-10-14 08:59:52 |
合計ジャッジ時間 | 8,748 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 3 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 2 ms
6,820 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | AC | 2 ms
6,820 KB |
testcase_11 | AC | 374 ms
7,620 KB |
testcase_12 | AC | 656 ms
10,628 KB |
testcase_13 | AC | 697 ms
10,988 KB |
testcase_14 | AC | 701 ms
11,028 KB |
testcase_15 | AC | 585 ms
9,976 KB |
testcase_16 | AC | 280 ms
6,820 KB |
testcase_17 | AC | 381 ms
7,688 KB |
testcase_18 | AC | 598 ms
9,964 KB |
testcase_19 | AC | 568 ms
9,664 KB |
testcase_20 | AC | 611 ms
10,204 KB |
testcase_21 | AC | 707 ms
11,112 KB |
ソースコード
#include <bits/stdc++.h> #define REP(i, n) for(int i = 0;i < n;i++) #define ll long long using namespace std; //typedef vector<unsigned int>vec; //typedef vector<ll>vec; //typedef vector<vec> mat; typedef pair<int, int> P; typedef pair<ll,ll> LP; const int dx[8] = {1, 0, -1, 0, 1, -1, -1, 1}; const int dy[8] = {0, 1, 0, -1, 1, 1, -1, -1}; const int INF = 1000000000; const ll LINF = 1000000000000000000;//1e18 const ll MOD = 1000000007; const double PI = acos(-1.0); const double EPS = 1e-10; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } template<class T> inline void add(T &a, T b){a = ((a+b) % MOD + MOD) % MOD;}; template<typename T> vector<T> smallest_prime_factors(T n) { vector<T> spf(n + 1); for (int i = 0; i <= n; i++) spf[i] = i; for (T i = 2; i * i <= n; i++) { // 素数だったら if (spf[i] == i) { for (T j = i * i; j <= n; j += i) { // iを持つ整数かつまだ素数が決まっていないなら if (spf[j] == j) { spf[j] = i; } } } } return spf; } template<typename T> map<T, T> factorization(T x, vector<T> &spf) { map<T, T> ret; while (x != 1) { ret[spf[x]]++; x /= spf[x]; } //sort(ret.begin(), ret.end()); return ret; } int main(){ cin.tie(0); ios::sync_with_stdio(false); int X; cin >> X; auto spf = smallest_prime_factors(X); vector<pair<int, int>> ans; int ma = INF; for(int i=X;i>=0;i--){ int d1 = 1, d2 = 1; if(i > 1){ auto res1 = factorization(i, spf); for(auto x : res1) d1 *= (x.second + 1); } if(X-i > 1){ auto res2 = factorization(X-i, spf); for(auto x : res2) d2 *= (x.second + 1); } int f = abs((i - d1) - (X-i - d2)); if(f == ma){ ans.emplace_back(i, X-i); //ans.emplace_back(X-i, i); } else if(f < ma){ ma = f; ans = vector<pair<int,int>> (); ans.emplace_back(i, X-i); //ans.emplace_back(X-i, i); } } //cout << ma << endl; sort(ans.begin(), ans.end()); for(auto x : ans) cout << x.first << " " << x.second << endl; }