摘要:
上代码 #include<iostream> using namespace std; int main(){ int a,b,c,d,e; int count=0; cin>>a>>b; c=a&b; d=a|b; e=c^d; while(e!=0){ e=((e-1)&e); count++; 阅读全文
摘要:
睿抗2023本科组第三题 #include<bits/stdc++.h> using namespace std; //声明全局变量 int n,k[6],level1,level2,t[6],f[32],r[32]; //函数get_level:根据五个骰子的点数,返回当前获胜等级 int get 阅读全文
摘要:
2024.5.8 今天写了洛谷 P1003 [NOIP2011 提高组] 铺地毯 关于这题,我有感悟: 先呈上我学习的第一篇代码: #include<iostream> using namespace std; int main(){ int n=0; long long arr[10001][10 阅读全文
摘要:
今天了解了一下记忆化搜索,作为一种dp,我难以理解 #include<iostream> #include<cstdio> using namespace std; long long dp[22][22][22]; long long w(long long a,long long b,long 阅读全文