主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
勋谦
这个人很懒,什么都没有写...
关注
发消息
文章
0
题解
34
发帖
0
笔记
0
Ta的粉丝
18
关注数
0
粉丝数
18
获赞数
6
阅读数
14410
字符移动 题解:简洁版
#include <iostream> using namespace std; int main(){ string s,s1,s2; getline(cin,s); for(int i = 0;i < s.size();i ++){ ...
P1012
2024年6月30日 15:44
回复 2
|
赞 1
|
浏览 598
查找1 题解:bool数组标记+map标记
bool数组标记 #include <iostream> #include <string.h> using namespace std; int n,m,a[1000],x,f[1000]; int main(){ int n; ...
P1388
2024年8月16日 16:17
回复 0
|
赞 0
|
浏览 314
字符串翻转 题解:getline
#include <iostream> using namespace std; int main(){ string s; getline(cin,s); for(int i = s.size() - 1;i >= 0;i --){ ...
P1006
2024年6月30日 15:21
回复 1
|
赞 1
|
浏览 607
南京理工-搬箱子 题解:最长递增子序列
#include <bits/stdc++.h> using namespace std; const int N = 1e3 + 10; int s[N],dp[N]; int longSeq(int s[],int n){ for(int i = 0...
P1840
2024年7月25日 15:25
回复 0
|
赞 0
|
浏览 281
南京理工-求阶乘 题解:注意可能爆int
#include <iostream> using namespace std; typedef long long LL; int main(){ int n; cin >> n; LL ans = 1; for(LL...
P1837
2024年7月25日 14:33
回复 0
|
赞 0
|
浏览 311
南京理工-括号匹配 题解:stack + 顺序入栈(跟普通括号匹配有差别)
#include <bits/stdc++.h> using namespace std; int main(){ string s; while(cin >> s){ stack<char> ss; for(int...
P1838
2024年7月25日 14:30
回复 0
|
赞 0
|
浏览 327
整数奇偶排序 题解:模板题
#include <bits/stdc++.h> using namespace std; const int maxn = 1000 + 10; int arr[maxn]; bool cmp(int x,int y){ if(x % 2 == 1 &...
P1248
2024年7月6日 21:35
回复 0
|
赞 0
|
浏览 332
进制转换 题解:模板+二进制+字符串的处理
#include <iostream> #include <string.h> #include <algorithm> #include <string> using namespace std; string conve...
P1178
2024年7月6日 21:34
回复 0
|
赞 1
|
浏览 503
字符串排序 题解:sort(s.begin(),s.end())
#include <iostream> #include <algorithm> using namespace std; int main(){ string s; cin >> s; sort(s.begin(),s.end...
P1254
2024年7月6日 21:22
回复 0
|
赞 0
|
浏览 383
最简真分数 题解:最小公倍数+最大公约数
#include <iostream> #include <algorithm> using namespace std; const int N = 1000; int gcdx(int a,int b){ return b ? gcdx(...
P1180
2024年7月6日 21:21
回复 0
|
赞 0
|
浏览 413
01序列 题解:自动+bitset<6>
#include <bits/stdc++.h> using namespace std; string f(int n){ string s = ""; for(int i = 0;i < 6;i ++){ if(n > 0){ ...
P1001
2024年6月30日 16:14
回复 0
|
赞 0
|
浏览 473
整除 题解:简洁版
#include <iostream> using namespace std; int main(){ int cnt = 0; for(int i = 100;i <= 1000;i ++){ if(i % 5 == 0 &&a...
P1007
2024年6月30日 15:48
回复 0
|
赞 0
|
浏览 479
排序 题解:sort
#include <iostream> #include <algorithm> using namespace std; const int N = 1010; int s[N]; int n; int main(){ cin >...
P1010
2024年6月30日 15:26
回复 0
|
赞 0
|
浏览 469
A+B问题 题解:int范围为1e9,long long范围为1e18,不会爆
#include <iostream> using namespace std; typedef long long LL; int main(){ LL a,b; cin >> a >> b; cout <...
P1000
2024年6月30日 15:01
回复 0
|
赞 1
|
浏览 643
杨辉三角形 题解:写的可能复杂了点,易懂
#include <iostream> using namespace std; const int N = 1010; int s[N][N]; int main(){ int n; while(cin >> n){ for...
P1062
2024年6月29日 19:50
回复 0
|
赞 0
|
浏览 439
首字母大写 题解:
#include <iostream> using namespace std; int main(){ string s; while(getline(cin,s)){ if(s[0] >= 'a' && s[0] <...
P1240
2024年6月29日 19:40
回复 0
|
赞 1
|
浏览 538
进制转换2 题解:
浮点数运算误差:pow 函数在计算较大整数幂时可能会引入浮点数误差,导致结果不准确。 #include <iostream> #include <string> using namespace std; typedef long ...
P1259
2024年6月29日 19:33
回复 0
|
赞 0
|
浏览 523
利润提成 题解:
#include <iostream> using namespace std; double calculate_bonus(double profit) { double bonus = 0; if (profit <= 100000)...
P1040
2024年6月29日 19:15
回复 0
|
赞 0
|
浏览 419
求1到n的和 题解:
#include <iostream> using namespace std; typedef long long LL; int main(){ int n; LL ans = 0; cin >> n; for(int i...
P1133
2024年6月29日 19:08
回复 0
|
赞 0
|
浏览 422
计算Sn 题解:
#include <iostream> using namespace std; typedef long long LL; int main(){ int x,n; cin >> x >> n; LL ans ...
P1043
2024年6月29日 18:23
回复 0
|
赞 0
|
浏览 532
1
2
本科学校:安徽工业大学
目标学校:苏州大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!