主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
酷酷兔
这个人很懒,什么都没有写...
关注
发消息
文章
99
题解
0
发帖
0
笔记
0
Ta的粉丝
120
关注数
0
粉丝数
120
获赞数
8
阅读数
96498
P1434 [SHOI2002] 滑雪
#include<iostream> #include<cstdio> #include<cmath> using namespace std; int dx[4] = { 0,0,1,-1 }; int dy[4] = { 1,-1,0,0 ...
备考心情
2024年8月28日 14:30
回复 0
|
赞 0
|
浏览 888
P1119 灾后重建
#include<iostream> #include<cstdio> #define N 205 using namespace std; int n, m; int a[N]; int f[N][N];//邻接矩阵存边 inline void up...
备考心情
2024年8月28日 11:56
回复 0
|
赞 0
|
浏览 889
P1807 最长路
#include <bits/stdc++.h> #define int long long #define PII pair<int,int> #define MP make_pair #define INF LONG_LONG_MAX using ...
备考心情
2024年8月28日 11:17
回复 0
|
赞 0
|
浏览 1.0k
P1363 幻象迷宫
#include <iostream> #include <cstdio> #include <cstring> #include <cstdlib> #define MEM(arr,num) memset(arr,num,sizeo...
备考心情
2024年8月28日 10:16
回复 0
|
赞 0
|
浏览 970
P1127 词链
#include <cstring> #include <iostream> #include <algorithm> #include <queue> using namespace std; int n; std::s...
备考心情
2024年8月27日 23:01
回复 0
|
赞 0
|
浏览 869
P3916 图的遍历
#include <iostream> #include <cstdio> #include <vector> using namespace std; #define MAXL 100010 int N, M, A[MAXL]; v...
备考心情
2024年8月27日 13:50
回复 0
|
赞 0
|
浏览 984
P1229 遍历问题
#include<cstdio> #include<cstring> #include<cmath> #include<algorithm> using namespace std; int ans; char str1[233]...
备考心情
2024年8月27日 12:04
回复 0
|
赞 0
|
浏览 947
P2234 [HNOI2002] 营业额统计
#include<cstdio> #include<iostream> #include<algorithm> #include<set> using namespace std; set<int>s; set<...
备考心情
2024年8月27日 11:20
回复 0
|
赞 0
|
浏览 930
P1106 删数问题
#include<bits/stdc++.h> using namespace std; int main() { string n; int s, i; cin >> n >> s; while (s) { ...
备考心情
2024年8月27日 10:18
回复 0
|
赞 0
|
浏览 968
P1019 单词接龙
#include<bits/stdc++.h> using namespace std; string str[20]; int use[20], length = 0, n; int canlink(string str1, string str2) { for ...
备考心情
2024年8月26日 11:29
回复 0
|
赞 0
|
浏览 905
P1433 吃奶酪
#include <cstdio> #include <cstring> #include <cmath> #define min(a,b) (((a)<(b))?(a):(b)) //洛谷 P1433 吃奶酪 状压DP doubl...
备考心情
2024年8月26日 10:31
回复 0
|
赞 0
|
浏览 863
状态压缩
给你一个n*n的格子的棋盘,每个格子里面有一个非负数。 从中取出若干个数,使得任意的两个数所在的格子没有公共边,就是说所取的数所在的2个格子不能相邻,并且取出的数的和最大。 #include <iostream> using namespace std; #defi...
备考心情
2024年8月26日 10:06
回复 0
|
赞 0
|
浏览 938
TAT的个数
//#include<iostream> //#include<vector> //#include<algorithm> //#include<unordered_set> //using namespace std; //int...
备考心情
2024年8月25日 13:55
回复 0
|
赞 0
|
浏览 1.0k
P2895 [USACO08FEB]Meteor Shower S
#include<bits/stdc++.h> //美丽的万能头文件 using namespace std; int n, ma[305][305], v[305][305], sx, sy, st, ans[305][305];//分别为陨石数量,陨石砸落地图,记录是否...
备考心情
2024年8月24日 22:46
回复 0
|
赞 0
|
浏览 949
P1443 马的遍历
#include<iostream>//P1443 #include<cstdio> #include<cstring> #include<string> #include<algorithm> #include<...
备考心情
2024年8月24日 11:50
回复 0
|
赞 0
|
浏览 991
P2392 kkksc03考前临时抱佛脚
DFS搜索 #include<bits/stdc++.h> using namespace std; int Left,Right,minn,ans; int s[5]; int a[21][5]; void search(int x,int y){ if(...
备考心情
2024年8月24日 11:31
回复 0
|
赞 0
|
浏览 920
逆序对
#include<bits/stdc++.h> using namespace std; const int maxn = 500010; int n; int a[maxn],b[maxn]; long long ans = 0; //归并排序 void m...
备考心情
2024年8月23日 22:00
回复 0
|
赞 0
|
浏览 908
解一元一次方程
#include<iostream> #include<string> using namespace std; int main() { string s; cin >> s; int sym = 1, flag = 1; //sy...
备考心情
2024年8月18日 11:05
回复 0
|
赞 0
|
浏览 1.1k
求n的阶乘末尾连续0的个数
#include<iostream> #include<algorithm> using namespace std; int main(){ int n; while(cin>>n){ int cnt2 = 0, cnt5 = ...
备考心情
2024年8月18日 10:46
回复 0
|
赞 0
|
浏览 961
整数拆分
#include<iostream> using namespace std; int dp[1000001]; int main(){ int n; dp[0]=1; while(cin>>n){ for(in...
备考心情
2024年8月13日 11:51
回复 0
|
赞 0
|
浏览 967
1
2
3
4
5
本科学校:合肥工业大学
目标学校:无
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!