結果
問題 | No.1006 Share an Integer |
ユーザー | Haa |
提出日時 | 2020-03-06 22:54:40 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,420 bytes |
コンパイル時間 | 1,635 ms |
コンパイル使用メモリ | 171,388 KB |
実行使用メモリ | 50,348 KB |
最終ジャッジ日時 | 2024-10-14 09:19:56 |
合計ジャッジ時間 | 8,073 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long int ll; typedef pair<ll, ll> P; typedef vector<ll> VI; typedef vector<VI> VVI; const ll MOD = 1000000007; const ll INF = 2147483647; const ll LINF = 9223372036854775807; #define REP(i, n) for (int i = 0; i < n; i++) #define ALL(v) v.begin(), v.end() const int MAX = 2000001; VI d(MAX,0); VI p(0); void yaku(int n, int nk, int yk, ll x){ if(x >= MAX){ return; } d[x] = yk; for(int i = n;i < p.size();i++){ if(nk == 0){ yaku(i,1,2,p[i]); } else if(i == n){ yaku(i,nk+1,yk+(yk/(nk+1)),x*p[i]); } else{ yaku(i,1,yk*2,x*p[i]); } } } int main() { int x; cin >> x; VI f(MAX,1); p.push_back(2); int pr = 2; while(1){ for(int i = 2;i * pr < MAX;i++){ f[i*pr] = 0; } bool no = 1; for(int i = pr+1;i < MAX;i++){ if(f[i]){ pr = i; no = 0; break; } } if(no){ break; } p.push_back(pr); } yaku(0,0,0,1); int mina = INF; for(int i = 1;i <= x/2;i++){ mina = min(mina,(int)abs(i-d[i]-(x-i)+d[x-i])); } for(int i = 1;i < x;i++){ if(abs(i-d[i]-(x-i)+d[x-i]) == mina){ cout << i << ' ' << x-i << endl; } } return 0; }