主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
wudiyiyi
这个人很懒,什么都没有写...
关注
发消息
文章
0
题解
11
发帖
0
笔记
0
Ta的粉丝
318
关注数
0
粉丝数
318
获赞数
6
阅读数
106400
用栈模拟即可
#include <bits/stdc++.h> using namespace std; char s[30]; stack<char> q; int main() { while(scanf("%s",s)!=EOF) { ...
P1684
2020年4月16日 09:15
回复 0
|
赞 2
|
浏览 10.1k
简单贪心问题
#include <bits/stdc++.h> using namespace std; map<char,int> mp;///建立小球字符和权值之间的映射 int n,k,quanzhi[55]; char s[55]; int main() { ...
P1683
2020年4月16日 09:02
回复 0
|
赞 0
|
浏览 10.2k
用优先队列(小根堆),每次选择最小的两堆合成一堆再放入队列中
#include <bits/stdc++.h> using namespace std; priority_queue<int,vector<int>,greater<int> >q;///小根堆,权值小的先出队 int main()...
P1544
2020年4月16日 08:12
回复 0
|
赞 0
|
浏览 10.7k
字符串
#include <bits/stdc++.h> using namespace std; string s[1010],t; int n,q; int main() { while(scanf("%d",&n)!...
P1195
2020年4月16日 08:00
回复 0
|
赞 0
|
浏览 8.3k
bfs搜索模板题,求联通块的个数
#include <bits/stdc++.h> using namespace std; const int N=105; bool vis[N][N]; char mp[N][N]; int n,m,dir[][2]={1,0,-1,0,0,1,0,-1,1,1,1,...
P1564
2020年4月16日 00:08
回复 0
|
赞 0
|
浏览 7.3k
1e7的数据,所以筛法(打表)
#include <bits/stdc++.h> using namespace std; const int N=1e7+7; int l,r; bool p[N]; int main() { for(int i=2;i<N;i++...
P1701
2020年4月15日 23:26
回复 0
|
赞 0
|
浏览 11.0k
唯一的点就在于1e9的数据只能输入字符串,输入数字一定会超时
#include using namespace std; string s; bool judge(string t) { for(int i=0,j=t.size()-1;i<=j;i++,j--) {  ...
P1700
2020年4月15日 23:16
回复 0
|
赞 0
|
浏览 8.7k
c++18行(辗转相除法)
#include <bits/stdc++.h> using namespace std; int gcd(int a,int b)//最大公约数 { return b==0?a:gcd(b,a%b); } int lcd(int a,int...
P1041
2020年4月3日 09:57
回复 0
|
赞 0
|
浏览 9.7k
直接用sort函数
#include <bits/stdc++.h> using namespace std; const int N=1005; int n,a[N]; int main() { scanf("%d",&n); &...
P1010
2020年4月3日 09:30
回复 0
|
赞 2
|
浏览 11.1k
c++简单易懂
#include <bits/stdc++.h> using namespace std; string s,word,num,other; int main() { getline(cin,s); for(int...
P1016
2020年4月3日 09:23
回复 0
|
赞 1
|
浏览 10.1k
用STL中的map和string非常方便,只需要先把字符转换成小写就ok了
#include <bits/stdc++.h> using namespace std; map<char,int>mp; string s; int main() { getline(cin,s);  ...
P1019
2020年4月3日 09:17
回复 0
|
赞 1
|
浏览 9.1k
本科学校:中南大学
目标学校:清华大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!