Chri_K

2020年10月15日

营养膳食(贪心)

摘要: #include<iostream> #include<algorithm> using namespace std; struct food { int a; int b; }f[210]; bool cmp(food x,food y) { return x.a>y.a; } int kind[ 阅读全文

posted @ 2020-10-15 10:49 Chri_K 阅读(134) 评论(0) 推荐(0) 编辑

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) 编辑

2020年10月10日

精度计算(保留几位小数)

摘要: 1.需要头文件 #include <iomanip> 2. 要保留两位有效小数 cout<<setiosflags(ios::fixed)<<setprecision(2)<< 然后再输出实数类型变量即可以保留2位小数输出了,当然你要保留三位小数,setprecision(3)就行。 setprec 阅读全文

posted @ 2020-10-10 10:18 Chri_K 阅读(768) 评论(0) 推荐(0) 编辑

2020年10月8日

洛谷P1119灾后重建

摘要: #include<iostream> using namespace std; #define N 205 int n,m; int a[N]; int f[N][N]; inline void updata(int k) { for(int i=0;i<n;i++) { for(int j=0;j 阅读全文

posted @ 2020-10-08 11:20 Chri_K 阅读(89) 评论(0) 推荐(0) 编辑

2020年10月6日

暴雨rain

摘要: #include<cstdio> #include<cstring> #include<algorithm> #include<cassert> #include<queue> #include<vector> #include<map> #include<cmath> #include<set> 阅读全文

posted @ 2020-10-06 15:09 Chri_K 阅读(158) 评论(0) 推荐(0) 编辑

2020年10月5日

石子游戏stone

摘要: #include<iostream> using namespace std; int main() { int t,N;//t为几组,N为几堆 cin>>t; while(t--) { int win=0; //更新 cin>>N; int n,m;//m为每堆数量,n为每堆可取的最大数量 whi 阅读全文

posted @ 2020-10-05 15:48 Chri_K 阅读(75) 评论(0) 推荐(0) 编辑

2020年10月4日

化学家chemist

摘要: #include<iostream> #include<algorithm> using namespace std; typedef long long ll; const int MAXN=300010; int n,m,a[MAXN],b[MAXN],p[MAXN],v[MAXN]; int 阅读全文

posted @ 2020-10-04 15:05 Chri_K 阅读(326) 评论(0) 推荐(0) 编辑