Chri_K

2020年10月19日

堆积木(贪心)

摘要: #include<iostream> #include <algorithm> using namespace std; struct node { int w; int f; int s; }p[50010]; bool cmp(node x,node y) { return x.s < y.s; 阅读全文

posted @ 2020-10-19 22:45 Chri_K 阅读(113) 评论(0) 推荐(0) 编辑
奶酪工厂

摘要: #include <iostream> using namespace std; struct node { int cost; int need; }p[10010]; int main() { int n,s; cin>>n>>s; for (int i=1;i<=n;i++) { cin>>p 阅读全文

posted @ 2020-10-19 16:40 Chri_K 阅读(52) 评论(0) 推荐(0) 编辑
P1080 国王游戏(非高精版)

摘要: #include <iostream> #include <algorithm> using namespace std; struct node { int l; int r; int w; }p[1010]; bool cmp(node x,node y) { return x.w < y.w; 阅读全文

posted @ 2020-10-19 15:34 Chri_K 阅读(1879) 评论(0) 推荐(0) 编辑
P1106 删数问题

摘要: #include <iostream> #include <cstring> using namespace std; char a[260]; int main() { int len,k; cin>>a; cin>>k; len=strlen(a); while(k--) { for(int i 阅读全文

posted @ 2020-10-19 11:26 Chri_K 阅读(87) 评论(0) 推荐(0) 编辑
P1209 [USACO1.3]修理牛棚 Barn Repair

摘要: #include<iostream> #include<algorithm> using namespace std; int a[210]; int wst[210]; bool cmp(int a,int b) { return a>b; } int main() { int m,s,c; ci 阅读全文

posted @ 2020-10-19 10:38 Chri_K 阅读(77) 评论(0) 推荐(0) 编辑