結果
問題 | No.473 和と積の和 |
ユーザー | milanis48663220 |
提出日時 | 2021-05-13 00:34:55 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,384 bytes |
コンパイル時間 | 1,707 ms |
コンパイル使用メモリ | 133,732 KB |
実行使用メモリ | 14,016 KB |
最終ジャッジ日時 | 2024-09-24 12:56:26 |
合計ジャッジ時間 | 8,104 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,888 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 1,479 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 3 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 2 ms
6,944 KB |
testcase_16 | AC | 2 ms
6,940 KB |
testcase_17 | AC | 2 ms
6,940 KB |
testcase_18 | AC | 2 ms
6,940 KB |
testcase_19 | AC | 2 ms
6,940 KB |
testcase_20 | AC | 2 ms
6,940 KB |
testcase_21 | AC | 2 ms
6,940 KB |
testcase_22 | AC | 2 ms
6,944 KB |
testcase_23 | AC | 3 ms
6,940 KB |
testcase_24 | AC | 3 ms
6,944 KB |
testcase_25 | TLE | - |
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 | -- | - |
testcase_46 | -- | - |
ソースコード
#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; vector<ll> enumarate_facs(ll n){ vector<ll> ans; for(int i = 1; i*i <= n; i++){ if(n%i == 0){ ans.push_back(i); if(i*i != n) ans.push_back(n/i); } } sort(ans.begin(), ans.end()); return ans; } ll n, x; int ans; void dfs(int i, int j, int k, vector<ll> &facs, vector<vector<int>> &inv){ int m = facs.size(); // cout << "dfs(" << i << "," << facs[j] << "," << facs[k] << ")" << endl; double rem = (double)x/(double)facs[k]; bool too_large = [&]() -> bool{ double t = 0.5; for(int l = i; l < n; l++){ t *= facs[j]; if(t > x) return true; } return false; }(); if(too_large) { return; } if(i == n){ if(k == m-1) ans++; return; } for(int l = max(j, 1); l < m; l++){ if(inv[k][l] == -1) continue; dfs(i+1, l, inv[k][l], facs, inv); } } int main(){ ios::sync_with_stdio(false); cin.tie(0); cout << setprecision(10) << fixed; cin >> n >> x; if(n > 30){ cout << 0 << endl; return 0; } x++; auto facs = enumarate_facs(x); int m = facs.size(); vector<vector<int>> inv(m, vector<int>(m, -1)); map<ll, int> mp = [&](){ map<ll, int> ans; for(int i = 0; i < m; i++) ans[facs[i]] = i; return ans; }(); for(int i = 0; i < m; i++){ for(int j = 0; j < m; j++){ ll p = facs[i]*facs[j]; if(p > x) continue; if(x%p == 0){ // cout << facs[i] << '*' << facs[j] << '=' << facs[mp[p]] << endl; inv[i][j] = mp[p]; } } } dfs(0, 0, 0, facs, inv); cout << ans << endl; }