粉詹眉
粉詹眉
全部文章
分类
归档
标签
去牛客网
登录
/
注册
粉詹眉的博客
全部文章
(共128篇)
题解 | #简单计算器#
#include <iostream> #include <stack> #include <map> using namespace std; double func(double x, double y, char c) { if (c == '+'...
2024-03-09
0
158
题解 | #统计字符#
#include <iostream> #include <string> using namespace std; int main() { string a,b; while(getline(cin,a)&&a!="#"...
2024-03-09
0
132
题解 | #畅通工程#
#include <iostream> using namespace std; const int N=1010; int p[N]; int find(int x){ if(p[x]!=x) p[x]=find(p[x]); return p[x]; } int ...
2024-03-09
0
143
题解 | #火星A+B#
#include <iostream> #include <vector> using namespace std; int a[26];//存储前25个素数 bool is_prime(int n) { if (n == 1) return false; ...
2024-03-09
0
171
题解 | #寻找大富翁#
#include <iostream> #include <algorithm> using namespace std; const int N = 100010; int a[N]; int main() { int n, m; while (cin &...
2024-03-07
0
166
题解 | #Sharing#
#include <iostream> using namespace std; const int N=1000000; int a[N]; int main() { int address1,address2,n; while(cin>>address...
2024-03-07
0
194
题解 | #Grading#
#include <iostream> using namespace std; int main() { double p,t,g1,g2,g3,gl; while(cin>>p>>t>>g1>>g2>>g3...
2024-02-29
0
140
题解 | #后缀子串排序#
#include <iostream> #include <vector> #include <algorithm> using namespace std; int main() { string str; cin>>str; ...
2024-02-29
0
144
题解 | #成绩排序#
#include <iostream> #include <algorithm> using namespace std; struct stu1{//升序 string name; int score; int i;//录入先后顺序 boo...
2024-02-29
0
192
题解 | #成绩排序#
#include <iostream> #include <algorithm> using namespace std; const int N=110; struct node1{ string name; int score; bool ope...
2024-02-29
0
202
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页