水果 http://acm.hdu.edu.cn/showproblem.php?pid=1263 Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): ...
分类:
其他好文 时间:
2019-01-27 22:00:10
阅读次数:
228
#include #include #include #include #include using namespace std; int main() { int T, m; cin >> T; while(T--) { map >mp; string place, name; int num; ... ...
分类:
其他好文 时间:
2017-05-22 00:18:55
阅读次数:
221
Problem Description
夏天来了~~好开心啊,呵呵,好多好多水果~~
Joe经营着一个不大的水果店.他认为生存之道就是经营最受顾客欢迎的水果.现在他想要一份水果销售情况的明细表,这样Joe就可以很容易掌握所有水果的销售情况了.
Input
第一行正整数N(0
每组测试数据的第一行是一个整数M(0
Output
对于每一组测试数据,请你输出一...
分类:
其他好文 时间:
2015-05-08 09:28:33
阅读次数:
140
#include
#include
#include
using namespace std;
struct node
{
char name[90],place[90];
int num;
}c[105];
bool cmp(node x,node y)
{
if(strcmp(x.place,y.place)<0) return true;
if(strcmp(x.place,...
分类:
编程语言 时间:
2015-04-30 10:39:46
阅读次数:
162
题意:根据水果销量表,按照特定格式输出
格式:首先按产地排序,然后同一产地按水果名排序
注意:第一,设计多级排序
第二,同一产地同一水果可能多次出现,所以需要在前面已经输入的水果里面遍历找一次
第三,这里
#include
#include
#include
using namespace std;
int flag;//不同产地不同名的...
分类:
其他好文 时间:
2014-07-22 22:48:54
阅读次数:
297