主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
AidenP
WA==Wonderful Answer
关注
发消息
文章
0
题解
5
发帖
0
笔记
0
Ta的粉丝
176
关注数
0
粉丝数
176
获赞数
6
阅读数
25610
Minimum_Sum 题解:
可持久化线段树模版题 根据下标建立主席树,每次查询区间中间的数所处的位置,然后区间求和 #include <bits/stdc++.h> #define int long long using namespace std; const int N = 1e5 ...
P1910
2023年9月19日 19:46
回复 0
|
赞 0
|
浏览 830
简单模拟
#include #define IOS ios::sync_with_stdio(false);cin.tie(0); #define x first #define y second #define all(x) x.begin(),x.end(); using name...
P1887
2022年12月6日 10:22
回复 0
|
赞 0
|
浏览 4.3k
火车票订购,c++,简单模拟
就是一个模拟吧,没什么好说的 #include <bits/stdc++.h> #define IOS ios::sync_with_stdio(false);cin.tie(0); #define x first #define y second #define...
P1458
2022年9月28日 11:00
回复 0
|
赞 2
|
浏览 7.0k
c++ stl 6行解决
C++内置的有__gcd()函数,求解最大公约数 直接无脑stl就完事 #include <bits/stdc++.h> int minn = 0x3f3f3f3f,maxx = 0,n; int main(){ std:...
P1426
2022年9月28日 10:55
回复 0
|
赞 2
|
浏览 5.8k
简单排序
初看以为是拓扑排序,仔细读题后发现是个排序题 入度为0的结点一定是第一个执行的任务,每次会释放出要出的点所连的边 因此可以考虑用一个小根堆维护将要执行的任务,将堆顶弹出并将所连的边入堆 #include <bits/stdc++.h> #define IOS...
P1451
2022年9月28日 10:48
回复 0
|
赞 2
|
浏览 7.7k
本科学校:河南大学
目标学校:中国科学技术大学
N诺官方认证
专业大佬 - CCPC金奖