主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
James
这个人很懒,什么都没有写...
关注
发消息
文章
1
题解
81
发帖
0
笔记
0
Ta的粉丝
344
关注数
0
粉丝数
344
获赞数
28
阅读数
698178
约瑟夫环------vector模拟
#include <bits/stdc++.h> using namespace std; vector <int> v; int n; //约瑟夫环用vector模拟 //vector: //v.push_back(type?item)添加...
P1018
2021年1月27日 17:20
回复 0
|
赞 1
|
浏览 8.9k
简单贪心
#include <bits/stdc++.h> using namespace std; struct node{ double w; double m; ...
P1307
2021年1月27日 15:40
回复 0
|
赞 1
|
浏览 7.5k
STL---Set简单使用
#include <bits/stdc++.h> using namespace std; int n; //set 集合 //有序不重复的集合 //遍历方式: /* set <int>::iter...
P1383
2021年1月27日 13:01
回复 0
|
赞 0
|
浏览 8.4k
reverse s.substr s.replace的使用方法
#include <bits/stdc++.h> using namespace std; string s; string x; //reverse() 反转 //reverse(s.begin(), s.end())//不属于对象的方法 不用对...
P1387
2021年1月27日 12:38
回复 0
|
赞 1
|
浏览 8.2k
字符串数组
#include <bits/stdc++.h> using namespace std; //字符串数组不能直接写成char[][]这样会被理解成二维字符类型数组 //通过构造结构体数组,每个结构体中存放一个char[]即可 char s[105]; str...
P1294
2021年1月24日 18:27
回复 4
|
赞 0
|
浏览 7.8k
getline使用注意
#include <bits/stdc++.h> using namespace std; struct node{ string s; int len; }; node a[1001]; b...
P1261
2021年1月24日 17:13
回复 0
|
赞 0
|
浏览 8.8k
使用stable_sort稳定排序
#include <bits/stdc++.h> using namespace std; char s[10005]; char s1[10005]; int flag[10005];//标记非字符元素位置 bool cmp(char a,char b){  ...
P1255
2021年1月24日 16:02
回复 0
|
赞 2
|
浏览 8.9k
一轮的模拟,其他的直接用sort就可以
#include <bits/stdc++.h> using namespace std; int a[10005]; int b[10005]; int c[10005]; int n; //插入排序 void insert_sort(int *a,in...
P1106
2021年1月23日 20:51
回复 0
|
赞 2
|
浏览 8.8k
超级暴力详解
/* 闰年:能被400整除或者能被4整除并且不能被10整除 用数组存储闰年每一个月和平年每一个月 三种情况: case1.年月相同 直接做差加一 case2.年同月不同 判断当前年份是否为...
P1290
2021年1月19日 13:04
回复 0
|
赞 0
|
浏览 9.4k
超级暴力
/* 三种情况: 1.年月相同 2.年同月不同 3.年不同 */
P1290
2021年1月19日 12:59
回复 0
|
赞 0
|
浏览 8.7k
用xy变量控制矩阵逐渐缩小的规律
#include <bits/stdc++.h> using namespace std; int n; int a[21][21]; int main(){ cin>>n; int...
P1216
2021年1月17日 11:53
回复 0
|
赞 0
|
浏览 8.4k
简单模拟
#include <bits/stdc++.h> using namespace std; int n; int a[9][9]; int b[9][9]; bool _0(){ for(int i=1;i<=n;i++){ ...
P1377
2021年1月17日 10:51
回复 0
|
赞 0
|
浏览 8.7k
数组递归
#include <bits/stdc++.h> using namespace std; int n; int pre[10000]; int f[10000]; void fun(int x){ if(x==n) return ...
P1392
2021年1月16日 17:10
回复 0
|
赞 0
|
浏览 9.0k
二进制数和负二进制数差别在于向上取整和向下取整
#include <bits/stdc++.h> using namespace std; /* 1. 二进制数:向下取整 2. 负二进制数:向上取整 向上取整:n为负数n=n/(-2) &...
P1097
2021年1月16日 16:39
回复 0
|
赞 0
|
浏览 11.4k
01背包一维数组
#include <iostream> #include <cstdio> #include <algorithm> using namespace std; int f[105][1005]; int w[105]; int v[105]; ...
P1086
2021年1月14日 12:16
回复 0
|
赞 1
|
浏览 10.0k
简单位运算
#include <iostream> #include <algorithm> #include <cstdio> using namespace std; long long pow(int n,int m){ &nbs...
P1368
2021年1月13日 13:22
回复 0
|
赞 1
|
浏览 7.7k
不断Reverse()实现
#include <iostream> #include <algorithm> #include <cstdio> using namespace std; int a[1001]; int n,k,x; void init(int...
P1366
2021年1月13日 12:34
回复 0
|
赞 0
|
浏览 6.7k
string
#include<iostream> #include<algorithm> #include<cstdio> #include<string> using namespace std; string a; int main(){ ...
P1364
2021年1月13日 11:07
回复 0
|
赞 0
|
浏览 7.5k
sort
#include <iostream> #include <cstdio> #include <algorithm> using namespace std; int n; int a[10005]; int main(){ &nb...
P1371
2021年1月12日 20:08
回复 0
|
赞 0
|
浏览 7.8k
并查集实现
#include <iostream> using namespace std; const int maxn=1050; int f[maxn]; int n,m; void init(int n){ for(int i=1;i&...
P1367
2021年1月12日 19:30
回复 0
|
赞 0
|
浏览 7.3k
1
2
3
4
5
本科学校:山东财经大学
目标学校:吉林大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!