主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
酷酷兔
这个人很懒,什么都没有写...
关注
发消息
文章
99
题解
0
发帖
0
笔记
0
Ta的粉丝
120
关注数
0
粉丝数
120
获赞数
8
阅读数
96465
1319 并查集
#include <iostream> #include <cstdio> using namespace std; int fa[1005]; int find(int x){ if(x == fa[x]){ return...
综合
2024年3月15日 19:59
回复 0
|
赞 0
|
浏览 1.2k
1185 全排列
#include <bits/stdc++.h> #define rep(i, s, e) for (int i = s; i < e; i++) using namespace std; string s; // 输入的字符串 vector<bool&...
综合
2024年3月13日 14:44
回复 0
|
赞 0
|
浏览 1.2k
1124 生化武器2
#include<iostream> #include<cstring> #include<queue> using namespace std; const int maxn = 100 + 2; char mpt[maxn][maxn]...
综合
2024年3月13日 14:21
回复 0
|
赞 0
|
浏览 1.3k
1308 逃离迷宫2
#include <iostream> #include <cstdio> #include <cstring> #include <queue> using namespace std; #define inf 0x3f3f3...
综合
2024年3月12日 16:48
回复 0
|
赞 1
|
浏览 647
1165-abc 回溯法
#include<iostream> #include<cstdlib> #include<cstdio> #include<vector> using namespace std; vector<int> path...
综合
2024年3月11日 08:23
回复 0
|
赞 0
|
浏览 558
前缀树
public class Code02_TrieTree { private Node root; public Code02_TrieTree() { this.root = new Node(); } ...
综合
2024年3月11日 08:20
回复 0
|
赞 0
|
浏览 651
1175 剩下的树
#include <bits/stdc++.h> using namespace std; int main() { int L, M; while(cin>>L>>M) { int l, r, ...
综合
2024年3月10日 10:02
回复 0
|
赞 1
|
浏览 478
1561 二叉树
#include<iostream> using namespace std; typedef struct node { char data; struct node* lchild, * rchild; }node, * Tree; void...
综合
2024年3月8日 19:07
回复 0
|
赞 0
|
浏览 502
1562哈夫曼编码
#include<bits/stdc++.h> using namespace std; string str; int len, num[30]; int bfs() { priority_queue<int, vector<int>, ...
综合
2024年3月6日 20:49
回复 0
|
赞 0
|
浏览 650
1106 排序2
待做
综合
2024年3月6日 10:56
回复 0
|
赞 0
|
浏览 423
1347 TO Fill or Not to Fill
待做
综合
2024年3月6日 10:55
回复 0
|
赞 0
|
浏览 494
1017 幂次方
// 快速幂经典题 #include <bits/stdc++.h> using namespace std; //定义模 #define MOD 233333; //快速幂算法: //其实就是二分思想,把幂减半后,减少计算时间 //n为偶数,a^n=a^...
综合
2024年3月6日 10:54
回复 0
|
赞 1
|
浏览 653
整除问题1284
#include <iostream> #include <cmath> #include <vector> using namespace std; //getPrime就是统计质因子个数的。 void getPrime(vector&l...
综合
2024年3月5日 10:24
回复 0
|
赞 1
|
浏览 609
查找第k小数 1383
#include <bits/stdc++.h> using namespace std; int main(){ int n,x,k,count; while(cin>>n){ count = 0; ma...
综合
2024年2月28日 10:18
回复 0
|
赞 1
|
浏览 638
日志排序 1227
#include <bits/stdc++.h> using namespace std; struct T { string name; string time; string run; }t[10000]; bool compare(T t1, T t...
综合
2024年2月25日 23:01
回复 0
|
赞 0
|
浏览 607
删除字符串2 (1027)
#include <iostream> #include <string> using namespace std; int main() { string s; getline(cin, s); string target[8]...
综合
2024年2月25日 22:28
回复 0
|
赞 0
|
浏览 830
首字母大写(1240)
#include<bits/stdc++.h> using namespace std; char s[100]; int main() { while (gets(s)) { ...
综合
2024年2月19日 11:23
回复 0
|
赞 1
|
浏览 445
十进制和二进制(1176)
#include<iostream> #include<string> #define N 4000 using namespace std; int conversion(int d[],int data[],int n,int x,int y)...
综合
2024年2月11日 22:07
回复 0
|
赞 0
|
浏览 759
杨辉三角(递归)1392
#include <iostream> using namespace std; void ShowCm(int m) { if (m > 0) { ShowCm(m - 1); for (int i = 0, temp = 1; i < m + 1; i...
综合
2024年2月11日 22:06
回复 0
|
赞 0
|
浏览 603
1
...
3
4
5
本科学校:合肥工业大学
目标学校:无
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!