結果

問題 No.1006 Share an Integer
ユーザー pekempeypekempey
提出日時 2020-03-06 21:36:17
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 800 bytes
コンパイル時間 2,039 ms
コンパイル使用メモリ 170,896 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-10-14 04:29:42
合計ジャッジ時間 3,380 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, n) for (int i = 0; i < (n); i++)
#define repr(i, n) for (int i = (n) - 1; i >= 0; i--)
#define range(a) a.begin(), a.end()

int main() {
  int X; cin >> X;
  vector<int> cnt(X + 1);
  for (int i = 1; i <= X; i++) {
    for (int j = i; j <= X; j += i) {
      cnt[j]++;
    }
  }
  auto f = [&](int x) {
    return x - cnt[x];
  };
  int ans = INT_MAX;
  vector<pair<int, int>> pairs;
  for (int i = 1; i <= X - 1; i++) {
    int j = X - i;
    int cost = abs(f(i) - f(j));
    if (ans > cost) {
      ans = cost;
      pairs.clear();
      pairs.emplace_back(i, j);
    } else if (ans == cost) {
      pairs.emplace_back(i, j);
    }
  }
  for (auto p : pairs) {
    cout << p.first << ' ' << p.second << '\n';
  }
}
0