結果

問題 No.1006 Share an Integer
ユーザー sahiyasahiya
提出日時 2020-12-19 20:03:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 467 ms / 2,000 ms
コード長 2,345 bytes
コンパイル時間 2,082 ms
コンパイル使用メモリ 126,572 KB
実行使用メモリ 34,688 KB
最終ジャッジ日時 2024-09-21 10:34:33
合計ジャッジ時間 7,033 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 242 ms
20,864 KB
testcase_12 AC 434 ms
32,896 KB
testcase_13 AC 465 ms
34,688 KB
testcase_14 AC 462 ms
34,560 KB
testcase_15 AC 385 ms
30,208 KB
testcase_16 AC 179 ms
16,640 KB
testcase_17 AC 249 ms
21,248 KB
testcase_18 AC 395 ms
30,464 KB
testcase_19 AC 379 ms
29,312 KB
testcase_20 AC 415 ms
31,104 KB
testcase_21 AC 467 ms
34,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")

#include <algorithm>
#include <bitset>
#include <climits>
#include <cmath>
#include <cstring>
#include <deque>
#include <forward_list>
#include <iomanip>
#include <iostream>
#include <list>
#include <map>
#include <queue>
#include <set>
#include <string>
#include <unordered_map>
#include <unordered_set>
#include <utility>
#include <vector>

using namespace std;
typedef long long ll;
typedef pair<ll, ll> P;
typedef bitset<16> BS;
struct edge {
    int to, cost, id;
};
const ll MOD = 1E+09 + 7;
const ll INF = 1E18;
const int MAX_N = 2E+06;

ll X;

ll spf[MAX_N + 1]; //spf[i]はiの素因数のうち最小のものを示す

void smallest_prime_factor(ll n);
map<ll, ll> prime_factor(ll n);
ll div_count(map<ll, ll>& mp);

ll EQ[MAX_N + 1];

int main()
{
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    cin >> X;
    smallest_prime_factor(X);
    ll res = INF;
    for (ll i = 1; i <= (X + 1) / 2; i++) {
        auto a = prime_factor(i);
        auto b = prime_factor(X - i);
        ll an = div_count(a);
        ll bn = div_count(b);
        ll eq = abs(2 * i - X - an + bn);
        EQ[i] = eq, EQ[X - i] = eq;
        res = min(res, abs(2 * i - X - an + bn));
    }
    vector<P> ans;
    for (ll i = 1; i <= X - 1; i++) {
        if (EQ[i] == res) {
            ans.push_back(P(i, X - i));
        }
    }
    sort(ans.begin(), ans.end());

    /*
    for (int i = 0; i < N; i++) {
        for (int j = 0; j < N; j++) {
            cout << "i = " << i << ", j = " << j << ", dp = " << dp[i][j] << "\n";
        }
    }
    */

    for (auto p : ans) {
        cout << p.first << " " << p.second << "\n";
    }

    return 0;
}

//n以下のspfを求める
void smallest_prime_factor(ll n)
{
    for (ll i = 1; i <= n; i++) {
        spf[i] = i;
    }
    for (ll i = 2; i * i <= n; i++) {
        if (spf[i] == i) {
            for (ll j = i * i; j <= n; j += i) {
                spf[j] = i;
            }
        }
    }
}

//spfを元にnを素因数分解
map<ll, ll> prime_factor(ll n)
{
    map<ll, ll> res;
    while (n != 1) {
        res[spf[n]]++;
        n /= spf[n];
    }
    return res;
}

ll div_count(map<ll, ll>& mp)
{
    ll res = 1;
    for (auto p : mp) {
        res *= (p.second + 1);
    }
    return res;
}
0