哆啦A梦的百宝袋1234
哆啦A梦的百宝袋1234
全部文章
分类
归档
标签
去牛客网
登录
/
注册
哆啦A梦的百宝袋1234的博客
全部文章
(共11篇)
题解 | #小白鼠排队#
#include <bits/stdc++.h> using namespace std; struct node{ int weight; string color; friend bool operator<(node n1,node n2) { ...
2024-03-01
1
206
题解 | #特殊乘法#
#include <bits/stdc++.h> using namespace std; int main(){ long long m,n; while(cin>>m>>n){ long long sum = 0; ...
2024-02-29
0
175
题解 | #最大上升子序列和#动态规划问题
#include <bits/stdc++.h> using namespace std; int a[1001]; int dp[1001]; int main() { int n; while (cin >> n) { for (int i...
2024-01-21
0
153
题解 | #魔咒词典# map 建立双向映射
#include <bits/stdc++.h> #include <cstdio> using namespace std; int main(){ map<string ,string>mp; int n; while(true){ char lin...
2024-01-20
0
173
题解 | #哈夫曼树#优先队列+迭代求带权路径和
#include <bits/stdc++.h> using namespace std; int main() { //迭代求带权路径和 int n, leaf; while (cin >> n) { priority_queue&l...
2024-01-20
0
168
题解 | #复数集合#c++优先队列
#include <bits/stdc++.h> using namespace std; struct node { int a; int b; }; bool operator<( node n1, node n2) { //n1的模小于n2的模,则交换...
2024-01-19
1
219
题解 | #Fibonacci#分治思想
#include <iostream> using namespace std; int fun(int n){ if(n==0) return 0; else if(n==1) return 1; else return fun(n-1)+fun(n-2); }...
2024-01-16
1
209
题解 |栈操作 c++
#include <bits/stdc++.h> using namespace std; int main() { int n; stack <long long> s; long long x; cin>>n; for...
2024-01-16
0
190
题解 | #堆栈的使用# c++ stack
#include <bits/stdc++.h> using namespace std; int main() { int n; char c; int x; stack<int> s; while(cin>>n){ ...
2024-01-16
0
184
题解 C++ map
#include <bits/stdc++.h> using namespace std; int main(){ int n,m,x; map<int,int> mp; while(cin>>n){ for(int i=0;i<n;i++){ ...
2024-01-15
0
200
首页
上一页
1
2
下一页
末页