結果

問題 No.1006 Share an Integer
ユーザー rinrinta121rinrinta121
提出日時 2020-08-28 01:47:22
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 1,284 bytes
コンパイル時間 1,815 ms
コンパイル使用メモリ 173,868 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-09 00:58:36
合計ジャッジ時間 3,303 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define all(x) (x).begin(),(x).end()

typedef long long ll;
typedef pair<ll, ll> P;

const int mod =  1000000007;  //出力は (ans % mod + mod) % mod  (負の剰余を正にする)
const int inf = 1e9;
const long long INF = 1LL << 60;   // INF = 11

map<ll,ll> prime_factors(ll n){
    map<ll,ll> res;
    if(n == 1){
        res[n] = 1;
        return res;
    }
    for(ll i = 2; i * i <= n; i++){
        while(n % i == 0){
            ++res[i];
            n /= i;
        }
    }
    if(n != 1){
        res[n] = 1;
    }
    return res;
}

ll num_of_divisor(ll n){
    map<ll,ll> m = prime_factors(n);
    ll res = 1;
    for(auto i : m){
        res *= (i.second+1);
    }
    return res;
}

int main()
{
    ll x; cin >> x;
    ll num = INF;
    for(int i = 1; i < x; i++){
        ll a = i,b = x - i;
        if(abs(a-b) > 2 * (2*sqrt(x)+1)) continue;
        num = min(abs(a - num_of_divisor(a) - b + num_of_divisor(b)),num);
    }
    for(int i = 1; i < x; i++){
        ll a = i,b = x - i;
        if(abs(a-b) > 2 * (2*sqrt(x)+1)) continue;
        if(num == abs(a - num_of_divisor(a) - b + num_of_divisor(b))){
            cout << a << ' ' << b << endl;
        }
    }
}
0