主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
Ang
这个人很懒,什么都没有写...
关注
发消息
文章
0
题解
39
发帖
1
笔记
0
Ta的粉丝
512
关注数
0
粉丝数
512
获赞数
13
阅读数
372851
MIN的01背包
#include<stdio.h> #define INF 1000 int stamp[1000]; int dp[1000]; // 返回最少数量,num表示邮票的个数,deno表示要凑成的面额 int Min_Stamp(int num,int deno){ ...
P1164
2020年3月14日 13:21
回复 0
|
赞 0
|
浏览 8.0k
用了素数筛的方法,复杂度太高了,勉强通过
#include using namespace std; int const maxn=340000; int const maxp=1000; bool isPrime[maxp]; vector prime; void Initial(){ fi...
P1489
2020年3月13日 23:30
回复 0
|
赞 0
|
浏览 11.6k
签到
#include<bits/stdc++.h> using namespace std; int main(){ int T; cin>>T; while(T--){ long long x; ...
P1487
2020年3月13日 20:28
回复 0
|
赞 0
|
浏览 8.7k
题目描述原本有一些错误,联系群主更正了
#include<bits/stdc++.h> using namespace std; string t; string CUT(string s,int l,int r){ t=s.substr(l,r-l+1); s.erase(l,...
P1559
2020年3月12日 23:52
回复 0
|
赞 0
|
浏览 6.2k
又是枚举。。。
#include<bits/stdc++.h> using namespace std; int main(){ int t; cin>>t; while(t--){ int n,m; cin...
P1558
2020年3月12日 22:25
回复 0
|
赞 0
|
浏览 7.0k
枚举签到题
#include<bits/stdc++.h> using namespace std; int main(){ int t; cin>>t; while(t--){ int m; cin&g...
P1556
2020年3月12日 22:17
回复 0
|
赞 0
|
浏览 8.1k
签到
#include<bits/stdc++.h> using namespace std; int dp[22]; int main(){ dp[0]=0; dp[1]=1; dp[2]=2; dp[3]=4; fo...
P1658
2020年3月12日 16:17
回复 0
|
赞 0
|
浏览 9.1k
签到
#include<bits/stdc++.h> using namespace std; int main(){ int n,m; while(cin>>m>>n){ if(n==0&&m==...
P1034
2020年3月12日 14:57
回复 0
|
赞 0
|
浏览 7.7k
注意复杂度
#include<bits/stdc++.h> using namespace std; bool sqrt(int x){ bool flag = false; for(int i=1;i*i<=x;i++){ if(i*i==x){ flag...
P1560
2020年3月12日 01:50
回复 0
|
赞 0
|
浏览 9.5k
快速幂签到题
#include<bits/stdc++.h> using namespace std; int main(){ long long x,n; cin>>x>>n; long long ans=1; wh...
P1017
2020年3月12日 00:50
回复 0
|
赞 0
|
浏览 10.9k
考察一下并查集的概念,签到题
#include<bits/stdc++.h> using namespace std; int const MAXN=10001; int father[MAXN]; int height[MAXN]; void Initial(){ for(...
P1586
2020年3月11日 14:54
回复 0
|
赞 0
|
浏览 8.4k
dijistra的样版题
#include<bits/stdc++.h> using namespace std; int const MAXN=10001; int const INF=INT_MAX; struct Edge{ int to; int len;...
P1612
2020年3月11日 00:25
回复 0
|
赞 0
|
浏览 10.2k
样版题
#include<iostream> #include<cstdio> #include<string> using namespace std; struct node{ char data; node* l; ...
P1561
2020年3月10日 23:12
回复 0
|
赞 2
|
浏览 8.6k
把树看成图,用邻接表的广度优先搜索求解单源最短路
#include<bits/stdc++.h> using namespace std; vector<vector<int> > t(510); int bfs(int a, int b){ vector<bool&g...
P1654
2020年3月10日 18:57
回复 0
|
赞 0
|
浏览 8.9k
进位的1要保留
#include using namespace std; int main(){ int t; cin>>t; while(t--){ string str; cin>>str; ...
P1647
2020年3月10日 18:17
回复 0
|
赞 0
|
浏览 12.5k
宽度优先搜索
#include<iostream> #include<cstdio> #include<queue> using namespace std; struct status{ int n,t; status(int x...
P1072
2020年3月9日 19:44
回复 0
|
赞 0
|
浏览 7.8k
dijistra,放到一个输入数组里,晚上不让走路的话,把那条输入给跳了,在用一次就好了
#include<iostream> #include<queue> #include<vector> #include<cstring> #include<climits> using name...
P1655
2020年3月9日 19:15
回复 0
|
赞 0
|
浏览 8.5k
宽度优先搜索
#include<iostream> #include<cstdio> #include<queue> using namespace std; struct status{ int n,t; &...
P1072
2020年3月8日 17:33
回复 1
|
赞 0
|
浏览 10.5k
能A就行
#include<iostream> #include<cstdio> #include<algorithm> using namespace std; struct Node{ int Element; &nbs...
P1015
2020年3月6日 20:36
回复 0
|
赞 0
|
浏览 9.4k
1
2
本科学校:中国计量大学
目标学校:北京邮电大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!