赞
踩
A—online shopping
- #include<stdio.h>
- #include<string.h>
- #include<stdlib.h>
- int main()
- {
- int n, average, fee;//定义n次的循环,是否有运费的标准,运费。
- scanf("%d %d %d", &n, &average, &fee);
- int i; int sum=0;
- for (i = 0; i < n; i++)//把买的东西的价格和件数相乘然后相加,得到总值
- {
- int price, t;
- scanf("%d %d", &price, &t);
- sum += price * t;
- }
- if (sum >= average)//将总值与标准比较,大于就不需要运费,小于就需要运费。
- printf("%d", sum);
- else {
- sum += fee;
- printf("%d", sum);
- }
-
-
- return 0;
- }
- #include<stdio.h>
- #include<string.h>
- #include<stdlib.h>
- int main()
- {
- int n, boli, bei;
- scanf("%d %d %d", &n, &boli, &bei);//定义步骤数,玻璃杯,杯子的毫升数。
- int i = 0; int sum = 0; int a=0, b=0;
- for (; i < n; i++)//我们可以归结所有的情况为:玻璃杯满——倒,杯子没水——加,杯子有水——倒入玻璃杯。
- {
- if (a == boli)
- a = 0;
- else if (b == 0)
- b = bei;
- else if (b >= boli - a)
- {
- b -= boli - a;
- a = boli;
- }
- else
- {
- a += b;
- b = 0;
- }
-
- }
- printf("%d %d", a, b);
-
- return 0;
- }
C——T-shirts
- #include<stdio.h>
- #include<string.h>
- #include<stdlib.h>
- int main()
- {
- int N, M;
- scanf("%d %d", &N, &M);//输入天数和已经准备的shirts
- int i = 0; char plan[1000];
- scanf("%s", plan);//输入安排
- int needt = 0;//定义消耗的plain-shirts
- int needl=0;//定义消耗的Logo-shirts
- int mail = 0;//定义需要买的Logo-shirts
- //根据我的切身体验,分类讨论时如果从’0‘开始其实容易大脑短路,所以建议从’1‘或’2‘开始讨论
- for (; i < N; i++)//这个题目我们其实可以分为三种情况讨论
- {
-
- //’1‘是吃饭,可以穿plain也可以是Logo,但题目中是要求最少的Logo衣服,所以优先消耗plain,如果求最大自然就优先消耗Logo
- if (plan[i] == '1')
- {
- if (M > needt)//当消耗的plain-shirts小于准备的时,就会消耗plain。所以needt加一
- needt++;
- else//当消耗等于或大于(其实在这里没有这种可能)准备时就会消耗Logo
- needl++;
- }
- else if (plan[i] == '2')
- needl++;
- else
- {
- if (needl > mail)//可能很多人就是在这里就不能理解,为啥要比较消耗的和买的然后再把消耗的赋值给买的而不是直接赋值呢?因为如果直接赋值如果说只有一个零那就是对的,但如果有两个及以上就不对。举个例子,如果第一个零之前,消耗3Logo,mail=3,needl变为0;第一个零到第二个零之间没消耗或者消耗小于3,那么如果是直接赋值,mail就变成了0或者1,2;最后结果就不会是3!!!
- {
- mail = needl;
- }
- needl = 0; needt = 0;
- }
-
-
- }
- if (needl > mail)
- //最后为啥还要来个比较,其实’0‘每出现一次就相当于一次”总结“,如果在一个’0‘之后或者甚至没有一次’0‘,就可能会出现后面消耗的Logo,大于上一次“总结”时的,所以这里需要一个比较。
-
- mail = needl;
- printf("%d", mail);//可能有别人的答案或者解析中把数组中第N+1位定义为’0‘(如 char S[N]='0')或者类似行为其实就相当于我在最后这里的比较!!!!
-
- return 0;
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。