Codeforces Round #774 (Div. 2) C. Factorials and Powers of Two(暴力/dfs/位运算)
2022/3/5 23:15:22
本文主要是介绍Codeforces Round #774 (Div. 2) C. Factorials and Powers of Two(暴力/dfs/位运算),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
include <bits/stdc++.h>
define gcd(a, b) __gcd(a, b)
define INF 0x3f3f3f3f3f
define eps 1e-6
define PI acos(-1.0)
define pb push_back
define fst first
define sec second
define eif else if
define de(x) cout << x << ' '
define en cout << '\n'
define fuck cout << "fuck\n"
define rep(i, x, y) for (int i = x; i < y; i++)
define red(i, x, y) for (int i = x - 1; i >= y; i--)
define mem(a, x) memset(a, x, sizeof(a))
define IOS cin.tie(0), ios::sync_with_stdio(false)
define maxn 200005
define mod 1000000007
typedef long long ll;
define pll pair<ll, ll>
using namespace std;
ll n, ans;
ll a[105];
ll count(ll x) {
ll cnt = 0;
while(x) {
cnt += (x & 1);
x >>= 1;
}
return cnt;
}
void dfs(ll x, ll sum, ll cnt) {
if(x == 16) {
//cout << x << endl;
ll res = n - sum;
ans = min(ans, count(res) + cnt);
return;
}
if(sum > n) return;
dfs(x + 1, sum, cnt);
if(x >= 3 && sum + a[x] <= n) dfs(x + 1, sum + a[x], cnt + 1);//避免2^0, 2^1与1!, 2!冲突
}
void solve() {
cin >> n;
ans = count(n);
a[1] = 1ll;
for(int i = 2; i <= 15; i++) {
a[i] = a[i - 1] * i;
}
dfs(1, 0, 0);
cout << ans << endl;
}
signed main() {
int T = 1;
cin >> T;
while (T--) {
solve();
}
}
这篇关于Codeforces Round #774 (Div. 2) C. Factorials and Powers of Two(暴力/dfs/位运算)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-23增量更新怎么做?-icode9专业技术文章分享
- 2024-11-23压缩包加密方案有哪些?-icode9专业技术文章分享
- 2024-11-23用shell怎么写一个开机时自动同步远程仓库的代码?-icode9专业技术文章分享
- 2024-11-23webman可以同步自己的仓库吗?-icode9专业技术文章分享
- 2024-11-23在 Webman 中怎么判断是否有某命令进程正在运行?-icode9专业技术文章分享
- 2024-11-23如何重置new Swiper?-icode9专业技术文章分享
- 2024-11-23oss直传有什么好处?-icode9专业技术文章分享
- 2024-11-23如何将oss直传封装成一个组件在其他页面调用时都可以使用?-icode9专业技术文章分享
- 2024-11-23怎么使用laravel 11在代码里获取路由列表?-icode9专业技术文章分享
- 2024-11-22怎么实现ansible playbook 备份代码中命名包含时间戳功能?-icode9专业技术文章分享