Chri_K

2020年10月13日

零件分组(stick)

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

posted @ 2020-10-13 16:58 Chri_K 阅读(268) 评论(0) 推荐(0) 编辑
活动选择act0

摘要: #include<iostream> #include<algorithm> using namespace std; int b[1010],e[1010]; int t,temp; int main() { int n; cin>>n; for(int i=1;i<=n;i++) { cin>> 阅读全文

posted @ 2020-10-13 15:47 Chri_K 阅读(72) 评论(0) 推荐(0) 编辑
美元汇率dollars

摘要: //思路:用最少的美元换最多的马克,再用最少的马克换最多的美元 即:寻找当第i天的数大于第i+1天时,就将美元换成马克再换回美元(sum=sum*a[i]/a[i+1]) #include<iostream> #include<iomanip> using namespace std; int a[ 阅读全文

posted @ 2020-10-13 15:19 Chri_K 阅读(123) 评论(0) 推荐(0) 编辑
数列分段divide

摘要: //这题好像不贪心啊+_+ #include<iostream> using namespace std; int a; int main() { int n,m; cin>>n>>m; int ans=0; int sum=0; for(int i=1;i<=n;i++) { cin>>a; if 阅读全文

posted @ 2020-10-13 14:33 Chri_K 阅读(75) 评论(0) 推荐(0) 编辑