結果
問題 | No.1383 Numbers of Product |
ユーザー | milanis48663220 |
提出日時 | 2021-07-01 22:54:43 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,485 ms / 2,000 ms |
コード長 | 2,399 bytes |
コンパイル時間 | 1,268 ms |
コンパイル使用メモリ | 128,504 KB |
実行使用メモリ | 68,352 KB |
最終ジャッジ日時 | 2024-06-28 11:52:35 |
合計ジャッジ時間 | 32,076 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 2 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 | 644 ms
43,136 KB |
testcase_08 | AC | 884 ms
42,624 KB |
testcase_09 | AC | 793 ms
52,224 KB |
testcase_10 | AC | 1,074 ms
67,584 KB |
testcase_11 | AC | 1,055 ms
66,560 KB |
testcase_12 | AC | 1,069 ms
67,456 KB |
testcase_13 | AC | 1,401 ms
64,768 KB |
testcase_14 | AC | 850 ms
55,424 KB |
testcase_15 | AC | 684 ms
45,440 KB |
testcase_16 | AC | 1,050 ms
66,688 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | AC | 2 ms
5,376 KB |
testcase_25 | AC | 2 ms
5,376 KB |
testcase_26 | AC | 2 ms
5,376 KB |
testcase_27 | AC | 2 ms
5,376 KB |
testcase_28 | AC | 12 ms
5,376 KB |
testcase_29 | AC | 813 ms
53,248 KB |
testcase_30 | AC | 1,074 ms
68,224 KB |
testcase_31 | AC | 2 ms
5,376 KB |
testcase_32 | AC | 200 ms
16,640 KB |
testcase_33 | AC | 2 ms
5,376 KB |
testcase_34 | AC | 2 ms
5,376 KB |
testcase_35 | AC | 976 ms
62,464 KB |
testcase_36 | AC | 1,286 ms
60,032 KB |
testcase_37 | AC | 1,471 ms
68,352 KB |
testcase_38 | AC | 1,078 ms
68,224 KB |
testcase_39 | AC | 1,074 ms
68,352 KB |
testcase_40 | AC | 1,069 ms
68,224 KB |
testcase_41 | AC | 1,485 ms
68,352 KB |
testcase_42 | AC | 1,069 ms
68,352 KB |
testcase_43 | AC | 1,484 ms
68,352 KB |
testcase_44 | AC | 1,068 ms
68,352 KB |
testcase_45 | AC | 1,073 ms
68,352 KB |
testcase_46 | AC | 2 ms
5,376 KB |
testcase_47 | AC | 1,045 ms
66,816 KB |
testcase_48 | AC | 1,045 ms
67,328 KB |
testcase_49 | AC | 1,072 ms
67,968 KB |
testcase_50 | AC | 1,471 ms
67,840 KB |
testcase_51 | AC | 2 ms
5,376 KB |
testcase_52 | AC | 2 ms
5,376 KB |
ソースコード
#include <iostream> #include <algorithm> #include <iomanip> #include <vector> #include <queue> #include <set> #include <map> #include <tuple> #include <cmath> #include <numeric> #include <functional> #include <cassert> #define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl; #define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } using namespace std; typedef long long ll; const ll INF = 2e18; ll calc(ll a, ll b, ll k){ ll ans = a; for(ll i = 1; i <= b; i++){ if(k >= INF/i) return INF; ll x = a+k*i; if(ans >= INF/x) return INF; ans *= x; } // cout << "calc(" << a << "," << b << "," << k << ") = " << ans << endl; return ans; } ll f(ll x, ll k){ ll l = 0, r = 1e9; while(r-l > 1){ ll c = (l+r)/2; if(calc(c, 1, k) > x) r = c; else l = c; } return l; } int naive(ll n, ll k, ll m){ map<ll, int> cnt; for(int b = 1; ; b++){ if(calc(1, b, k) > n) break; for(int a = 1; ; a++){ ll x = calc(a, b, k); if(x > n) break; if(cnt.count(x) == 0) cnt[x] = 1; else cnt[x]++; } } int ans = 0; for(auto [_, c]: cnt){ if(c == m) ans++; } return ans; } int main(){ ios::sync_with_stdio(false); cin.tie(0); cout << setprecision(10) << fixed; ll n, k, m; cin >> n >> k >> m; map<ll, int> cnt; for(int b = 2; ; b++){ if(calc(1, b, k) > n) break; for(int a = 1; ; a++){ ll x = calc(a, b, k); if(x > n) break; if(cnt.count(x) == 0) cnt[x] = 1; else cnt[x]++; } } vector<ll> v; for(auto &[x, c]: cnt) { ll y = f(x, k); if(calc(y, 1, k) == x){ v.push_back(x); c++; } } int ans = 0; for(auto [_, c]: cnt){ if(c == m) ans++; } if(m == 1){ ll y = f(n, k); ans += y; for(auto [x, c]: cnt){ ll y = f(x, k); if(calc(y, 1, k) == x) ans--; } } cout << ans << endl; // cout << naive(n, k, m) << endl; }