随笔分类 -  CSP题解

摘要:#include<iostream> #include<queue> #include<algorithm> using namespace std; int n,m; struct node{ int x1; int x2; int y1; int y2; int num; int no; }wi 阅读全文
posted @ 2022-10-10 22:15 death_gun 阅读(38) 评论(0) 推荐(0)
摘要:一、关于优先队列 1 #include<iostream> 2 #include<queue> 3 4 using namespace std; 5 6 priority_queue<int,vector<int>,greater<int>> q1; 7 priority_queue<int,vec 阅读全文
posted @ 2022-10-10 22:13 death_gun 阅读(25) 评论(0) 推荐(0)