主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
上岸课程
讨论区
兑换中心
登录
注册
上岸
xjnotywlq
这个人很懒,什么都没有写...
关注
发消息
文章
0
题解
39
发帖
0
笔记
0
Ta的粉丝
74
关注数
0
粉丝数
74
获赞数
1
阅读数
20411
最长连续公共子序列 题解:Output Limit Exceeded
#include <stdio.h> #include <stdlib.h> int m,n; char s1[105],s2[105]; int dp[105][105]; int max1(int a,int b) { if(a>...
P1730
2024年3月23日 14:10
回复 1
|
赞 0
|
浏览 729
打地鼠 题解:贪心
#include <iostream> #include <cstring> #include <algorithm> using namespace std; const int N = 100010; int n, d; in...
P998
2024年3月23日 22:54
回复 0
|
赞 0
|
浏览 567
最小邮票数 题解:01背包
#include <stdio.h> #include <stdlib.h> int m,n; int a[105]; int dp[105][105]; int min(int a,int b) { if(a<=b)return a...
P1164
2024年3月23日 12:47
回复 0
|
赞 0
|
浏览 638
上楼梯 题解:dp
#include <stdio.h> #include <stdlib.h> int n; int dp[10000005]; int main() { dp[1]=1; dp[2]=2; dp[3]=4; ...
P1658
2024年3月22日 19:42
回复 0
|
赞 0
|
浏览 374
骨牌铺方格 题解:dp
#include <stdio.h> #include <stdlib.h> int n; int dp[10000005]; int main() { dp[1]=1; dp[2]=2; dp[3]=4; ...
P1029
2024年3月22日 19:42
回复 0
|
赞 0
|
浏览 497
采药 题解:数组大小开的不好就会错OVO
#include <stdio.h> #include <stdlib.h> int t,m; int w[10000]; int v[10000]; int dp[1000][10000]; int max(int a,int b) { ...
P1086
2024年3月22日 16:28
回复 0
|
赞 0
|
浏览 392
简单背包问题 题解:dp
#include <stdio.h> #include <stdlib.h> int s,n; int w[1000]; int dp[1000][1000]; int max(int a,int b) { if(a>=b)retur...
P1035
2024年3月22日 16:06
回复 0
|
赞 0
|
浏览 635
最大序列和 题解:全改为long long
#include <stdio.h> #include <stdlib.h> long long n; long long a[100000]; long long dp[100000]={0}; long long max(long long a ,lo...
P1172
2024年3月22日 12:27
回复 0
|
赞 0
|
浏览 760
Hanoi塔问题 题解:
#include <stdio.h> #include <stdlib.h> int n; int count; void move(char a,char c){ count++; printf("%c-->%c ",a,...
P1082
2024年3月18日 16:04
回复 2
|
赞 0
|
浏览 657
One Way In, Two Ways Out 题解:类比之前的one way in,one way out
#include <stdio.h> #include <stdlib.h> int n,k; int stack[100000]; int tmp[10000]; int out[10000]; int top; int head; int m...
P990
2024年3月18日 14:45
回复 0
|
赞 0
|
浏览 360
切牌、洗牌 题解:简单模拟
#include <stdio.h> #include <stdlib.h> int a[8]; int b[4]; int c[4]; void left(){ int temp=a[0]; for(int i=1;i<8;...
P1937
2024年3月18日 14:00
回复 0
|
赞 0
|
浏览 371
出现次数最多的数 题解:qsort ,将下标当做结构体属性一起排序
#include <stdio.h> #include <stdlib.h> typedef struct node{ int num; int count; }node; int n; struct node p[10009]; ...
P2001
2024年3月17日 17:27
回复 0
|
赞 0
|
浏览 460
怎么借书 题解:dfs,类似全排列
#include <stdio.h> #include <stdlib.h> int n; int p[10000]; int path[10000]; int count; void dfs(int u){ if(u==3){ ...
P2004
2024年3月17日 17:13
回复 0
|
赞 0
|
浏览 395
ISBN号码识别 题解:简单模拟
#include <stdio.h> #include <stdlib.h> char s[10000]; //x-xxx-xxxxx-x int main() { scanf("%s",&s); int sum=0; su...
P2000
2024年3月17日 16:24
回复 0
|
赞 0
|
浏览 676
能否排序 题解:冒泡排序答案错误
#include <stdio.h> #include <stdlib.h> int t,n; int c[10000];//递减排序数组 int d[10000];//递减排序属性 int a[10000];//递增排序数组 int b[10000];...
P1741
2024年3月16日 14:24
回复 1
|
赞 0
|
浏览 451
Unsuccessful Searches 题解:模拟
#include <stdio.h> #include <stdlib.h> int main() { int l,d,n;//长度l,函数d,数量n int a[100000]; while(scanf("%d%d%d"...
P1695
2024年3月16日 13:53
回复 0
|
赞 0
|
浏览 374
P1741
2024年3月15日 16:42
回复 0
|
赞 0
|
浏览 342
调查作弊 题解:并查集
#include <stdio.h> #include <stdlib.h> int xiangsi[10000000]; int chaoxi[10000000]; int tuanhuo[10000000]; int n,m; int fin...
P1759
2024年3月15日 16:00
回复 0
|
赞 0
|
浏览 473
表面积 题解:固定一个圆柱,然后按照侧面积大小排序
#include <stdio.h> #include <stdlib.h> int max(int a,int b){ if(a>=b)return a; else return b; } typedef struct nod...
P1882
2024年3月15日 14:46
回复 0
|
赞 0
|
浏览 553
简单模式匹配 题解:只能过57%
#include <stdio.h> #include <stdlib.h> #include <math.h> #include <string.h> int main() { char s1[10000...
P1652
2024年3月13日 16:13
回复 2
|
赞 0
|
浏览 518
1
2
本科学校:厦门大学
目标学校:厦门大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!