結果
問題 | No.2262 Fractions |
ユーザー | KumaTachiRen |
提出日時 | 2023-04-07 22:29:13 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,957 bytes |
コンパイル時間 | 2,052 ms |
コンパイル使用メモリ | 204,980 KB |
実行使用メモリ | 13,640 KB |
最終ジャッジ日時 | 2024-10-02 19:56:26 |
合計ジャッジ時間 | 34,869 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; struct Fast { Fast() { std::cin.tie(0); ios::sync_with_stdio(false); } } fast; #define rep(i, a, b) for (int i = (a); i < (int)(b); i++) #define rrep(i, a, b) for (int i = (int)(b)-1; i >= (a); i--) #define ll long long template <typename T> bool chmax(T &a, const T &b) { if (a < b) { a = b; return true; } return false; } template <typename T> bool chmin(T &a, const T &b) { if (a > b) { a = b; return true; } return false; } int main() { int t; cin >> t; while (t--) { ll n, k; cin >> n >> k; vector<ll> dp(n + 1, 0); ll tot = 0; { for (int i = 1; i <= n; i++) dp[i] = (n / i) * (n / i); for (ll i = n; i >= 1; i--) for (ll j = i * 2; j <= n; j += i) dp[i] -= dp[j]; if (dp[1] < k) { cout << -1 << "\n"; continue; } tot = dp[1]; } if (k == (tot + 1) / 2) { cout << "1/1\n"; continue; ; } bool inv = false; if (k > (tot + 1) / 2) { k = tot - k + 1; inv = true; } { ll l = 0, r = n * n; while (r - l > 1) { ll x = (l + r) / 2; for (int i = 1; i <= n; i++) { dp[i] = 0; for (int a = i; a <= n; a += i) dp[i] += min(n, a * x / (n * n)) / i; } for (ll i = n; i >= 1; i--) for (ll j = i * 2; j <= n; j += i) dp[i] -= dp[j]; if (dp[1] < k) l = x; else r = x; } for (long a = 1; a <= n; a++) { long x = a * l / n / n + 1; long y = a * r / n / n; if (x == y) { if (!inv) { cout << y << "/" << a << "\n"; } else { cout << a << "/" << y << "\n"; } break; } } } } cout << endl; }