hdu1070】的更多相关文章

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1070 注意:1.喝到第五天,第六天就不喝了  2.相同花费的,优先考虑容量大的  3.注意强制类型转换 4.精度一定要注意 附上题解: #include <cstdio> #include <cstring> #include <iostream> #include <algorithm> using namespace std; + ; typedef str…
Milk Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 25253    Accepted Submission(s): 6841 Problem Description Ignatius drinks milk everyday, now he is in the supermarket and he wants to choose…
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1070 题意:一个人喝牛奶,有三个原则: 1.牛奶的日期不超过6天,就是最多5天. 2.每次只喝200ml,所以只要有低于200的牛奶就舍弃 3.每天就喝200ml: 超市每天卖当天生产的牛奶. 输出:输出性价比最高的牛奶,如果有性价比相同的,就输出容积最大的(所以需要记录牛奶原来的容积,这里一直错了3次) #include<iostream> #include<cstdio> #inc…
#include <stdio.h>#include <string.h>struct milk{ char brand[128]; int price; int volume; double value;}a[100];int main(void){ int i,t,n,d; struct milk tmp; scanf("%d",&t); while (t--){ scanf("%d",&n); for (i=0; i&l…
本题在于求单价,即为每一天(每200升牛奶)要多少钱,注意超过1000的当做5天,不足200的忽略 #include<iostream> #include<string> using namespace std; class milk { public: double p;  double average;  int vol;  int day;  string s; }; int main() { int T,N,i,redex; cin >> T; milk m[1…
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1070 解题思路:主要考察C结构体排序. #include <bits/stdc++.h> using namespace std; //考察结构体排序 struct milk { string s; int cost; int volume; }; bool cmp(milk a, milk b) { if (a.cost < b.cost) { return true; } else if…
POJ题目分类 | POJ题目分类 | HDU题目分类 | ZOJ题目分类 | SOJ题目分类 | HOJ题目分类 | FOJ题目分类 | 模拟题: POJ1006 POJ1008 POJ1013 POJ1016 POJ1017 POJ1169 POJ1298 POJ1326 POJ1350 POJ1363 POJ1676 POJ1786 POJ1791 POJ1835 POJ1970 POJ2317 POJ2325 POJ2390 POJ1012 POJ1082 POJ1099 POJ1114…