- 博客(1)
- 收藏
- 关注
原创 PAT-2020年春季考试-甲级 7-4 Replacement Selection (30分)
优先队列解法 #include <bits/stdc++.h> using namespace std; const int maxn = 1e5+9, INF=1e9; int n, m; struct node{ int v, id; friend bool operator < (node a, node b){ return a.id == b.id ? a.v>=b.v : a.id>=b.id; }; }; vector<
2020-07-28 12:19:50 714 2
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人