Chri_K

2020年10月21日

P1325 雷达安装 (贪心)

摘要: #include<iostream> #include<algorithm> #include<cmath> using namespace std; struct node { double l; double r; }a[1010]; bool cmp(node x,node y) { retu 阅读全文

posted @ 2020-10-21 13:20 Chri_K 阅读(103) 评论(0) 推荐(0) 编辑
智力大冲浪(贪心)

摘要: #include<iostream> #include<algorithm> using namespace std; struct node { int tl; int km; }a[510]; bool cmp(node x,node y) { return x.km>y.km; } int t 阅读全文

posted @ 2020-10-21 10:57 Chri_K 阅读(82) 评论(0) 推荐(0) 编辑