甲醇苯酚钠
甲醇苯酚钠
全部文章
分类
归档
标签
去牛客网
登录
/
注册
甲醇苯酚钠的博客
全部文章
(共78篇)
题解 | 小红走网格
#include <iostream> using namespace std; #include<cmath> int gcd(int a,int b){ if(b==0){ return a; } return gcd(b,a%b...
2026-01-31
0
61
题解 | 1=N
#include <iostream> using namespace std; #include<vector> #include<cmath> //分解为质因数 质因数的和就是最小成本 bool Iszhishu(int a){ if(a<=...
2026-01-25
0
48
题解 | 几乎是质数
#include <iostream> using namespace std; #include<set> #include<cmath> #include<map> // 一个质数不能由一个比它小的质数的倍数构成 int main(){ ...
2026-01-25
0
58
题解 | 最大公因数与最小公倍数
#include <iostream> using namespace std; #define ll long long int gcd(int a,int b){ if(b==0){ return a; } return gcd(b,...
2026-01-24
0
60
题解 | 分解质因数
#include <iostream> using namespace std; #include<cmath> #include<vector> #include<algorithm> #define ll long long bool Iszhi...
2026-01-24
0
76
题解 | 小红闯关
#include <iostream> using namespace std; #include<vector> #include<queue> #define ll long long int main() { int n,k; cin>&g...
2026-01-24
0
50
题解 | 小红的整数配对
#include <iostream> using namespace std; #include<vector> #include<functional> #include<cmath> #define ll long long int main()...
2026-01-23
0
49
题解 | 交换到最大
#include <iostream> using namespace std; #include<string> #define ll long long void swap(string &s,int i){//交换函数 char temp=s[i]-...
2026-01-23
0
54
题解 | 小红的魔法药剂
#include <iostream> using namespace std; #include<vector> int main() { int n; cin>>n; vector<int>v_store; vector<ve...
2026-01-23
0
47
题解 | 排座椅
//列举出所有应该分隔的通道编号,并记录这条通道能分隔出多少个说话的同学 map记录 //对map的值进行排序 借助vecor容器 //输出也要记得再排一次排序 #include <iostream> using namespace std; #include<vector>...
2026-01-23
0
47
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页