标签:基本 别人 最盼望的日子 行号 str 不用 pid 原因 target
此博客链接:https://www.cnblogs.com/ping2yingshi/p/12268487.html
1.发工资(28min)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2021
#include<stdio.h> #include<math.h> #include<stdlib.h> int main(void) { int n; while(~scanf("%d",&n)) { if(n==0) break; int c[100]; int i; int sum=0; for(i=0;i<n;i++) scanf("%d",&c[i]); for(i=0;i<n;i++) { if(c[i]/100!=0) sum=sum+c[i]/100; if(c[i]%100/50!=0) sum=sum+1; if(c[i]%100%50/10!=0) sum=sum+c[i]%100%50/10; if(c[i]%100%50%10/5!=0) sum=sum+1; if(c[i]%100%50%10%5/2!=0) sum=sum+c[i]%100%50%10%5/2; sum=sum+c[i]%100%50%10%5%2; } printf("%d", sum); printf("\n"); } return 0; }
2.海选女主角(55min)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2022
#include<stdio.h> #include<math.h> #include<stdlib.h> int main(void) { int n; int m; while(~scanf("%d %d",&m,&n)) { int c[100][100]; int i; int j; int maxw=0; int maxh=0; for(i=0;i<m;i++) for(j=0;j<n;j++) scanf("%d",&c[i][j]); for(i=0;i<m;i++) for(j=0;j<n;j++) { if((c[maxw][maxh]>=0)&&(c[i][j]>=0)) { if(c[maxw][maxh]<c[i][j]) { maxw=i; maxh=j; } } else if((c[maxw][maxh]<0)&&(c[i][j]<0)) { if(-c[maxw][maxh]<-c[i][j]) { maxw=i; maxh=j; } } else if((c[maxw][maxh]<0)&&(c[i][j]>0)) { if(-c[maxw][maxh]<c[i][j]) { maxw=i; maxh=j; } } else if((c[maxw][maxh]>0)&&(c[i][j]<0)) { if(c[maxw][maxh]<(-c[i][j])) { maxw=i; maxh=j; } } } printf("%d %d %d",maxw+1,maxh+1,c[maxw][maxh]); printf("\n"); } return 0; }
标签:基本 别人 最盼望的日子 行号 str 不用 pid 原因 target
原文地址:https://www.cnblogs.com/ping2yingshi/p/12268487.html