首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
contests专题
Arrangement for Contests UVALive - 8519
点击打开链接 贪心的思想 线段树操作 每次取区间最小值 然后拿掉这个最小值 并不影响区间内非最小值的匹配 #include <bits/stdc++.h>using namespace std;#define N 0x3f3f3f3fstruct node1{int l;int r;int minn;int pos;int laz;};struct node2{int minn;i
阅读更多...
Strategy in contests:an introduction(博弈论+机制设计) 综述论文摘录(持续更新)
Strategy in contests:an introduction(博弈论+机制设计) 综述论文摘录 一、基本信息二、文章摘要三、内容摘录3.1 Contest Definition3.2 Contest Examples3.3 Contest Classification3.3.1 The first-price all-pay auction3.3.2 Additive noise
阅读更多...