首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
shaolin专题
hdu 4585 Shaolin
无聊发道水题,貌似电脑上的编译器有问题,只好多写了点代码 原理上就是set容器的应用 #include <cstdio>#include <iostream>#include <set>using namespace std;struct node{int num, grade;};struct cpS{ bool operator()(const node &a,co
阅读更多...
HDU 4585 Shaolin Splay 寻找前驱后继
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4585 每次添加一个数在集合中,并寻找这个数在集合排序后的前驱和后继 Splay模板题 每次将节点插入后 查找根左子树最右节点 和 根右子树最左节点 代码: #include <bits/stdc++.h>#define sf scanf#define pf printfusing na
阅读更多...