博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CodeForces 151B Phone Numbers
阅读量:7219 次
发布时间:2019-06-29

本文共 7195 字,大约阅读时间需要 23 分钟。

 Phone Numbers
Time Limit:2000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u
Submit     

Description

Winters are just damn freezing cold in Nvodsk! That's why a group of n friends prefers to take a taxi, order a pizza and call girls. The phone numbers in the city consist of three pairs of digits (for example, 12-34-56). Each friend has a phonebook of size si (that's the number of phone numbers). We know that taxi numbers consist of six identical digits (for example, 22-22-22), the numbers of pizza deliveries should necessarily be decreasing sequences of six different digits (for example, 98-73-21), all other numbers are the girls' numbers.

You are given your friends' phone books. Calculate which friend is best to go to when you are interested in each of those things (who has maximal number of phone numbers of each type).

If the phone book of one person contains some number two times, you should count it twice. That is, each number should be taken into consideration the number of times it occurs in the phone book.

Input

The first line contains an integer n (1 ≤ n ≤ 100) — the number of friends.

Then follow n data blocks that describe each friend's phone books. Each block is presented in the following form: first goes the line that contains integer si and string namei (0 ≤ si ≤ 100) — the number of phone numbers in the phone book of the i-th friend and the name of the i-th friend. The name is a non-empty sequence of uppercase and lowercase Latin letters, containing no more than 20 characters. Next si lines contain numbers as "XX-XX-XX", where X is arbitrary digits from 0 to 9.

Output

In the first line print the phrase "If you want to call a taxi, you should call: ". Then print names of all friends whose phone books contain maximal number of taxi phone numbers.

In the second line print the phrase "If you want to order a pizza, you should call: ". Then print names of all friends who have maximal number of pizza phone numbers.

In the third line print the phrase "If you want to go to a cafe with a wonderful girl, you should call: ". Then print names of all friends who have maximal number of girls' phone numbers.

Print the names in the order in which they are given in the input data. Separate two consecutive names with a comma and a space. Each line should end with exactly one point. For clarifications concerning the output form, see sample tests. It is necessary that you follow the output form strictly. Extra spaces are not allowed.

Sample Input

Input
4 2 Fedorov 22-22-22 98-76-54 3 Melnikov 75-19-09 23-45-67 99-99-98 7 Rogulenko 22-22-22 11-11-11 33-33-33 44-44-44 55-55-55 66-66-66 95-43-21 3 Kaluzhin 11-11-11 99-99-99 98-65-32
Output
If you want to call a taxi, you should call: Rogulenko. If you want to order a pizza, you should call: Fedorov, Rogulenko, Kaluzhin. If you want to go to a cafe with a wonderful girl, you should call: Melnikov.
Input
3 5 Gleb 66-66-66 55-55-55 01-01-01 65-43-21 12-34-56 3 Serega 55-55-55 87-65-43 65-55-21 5 Melnik 12-42-12 87-73-01 36-04-12 88-12-22 82-11-43
Output
If you want to call a taxi, you should call: Gleb. If you want to order a pizza, you should call: Gleb, Serega. If you want to go to a cafe with a wonderful girl, you should call: Melnik.
Input
3 3 Kulczynski 22-22-22 65-43-21 98-12-00 4 Pachocki 11-11-11 11-11-11 11-11-11 98-76-54 0 Smietanka
Output
If you want to call a taxi, you should call: Pachocki. If you want to order a pizza, you should call: Kulczynski, Pachocki. If you want to go to a cafe with a wonderful girl, you should call: Kulczynski.

Hint

In the first sample you are given four friends. Fedorov's phone book contains one taxi number and one pizza delivery number, Melnikov's phone book only has 3 numbers of girls, Rogulenko's one has 6 taxi numbers and one pizza delivery number, Kaluzhin's one contains 2taxi numbers and one pizza delivery number.

Thus, if you need to order a taxi, you should obviously call Rogulenko, if you need to order a pizza you should call anybody of the following: Rogulenko, Fedorov, Kaluzhin (each of them has one number). Melnikov has maximal number of phone numbers of girls.

1 #include 
2 #include
3 4 int main() 5 { 6 int n,s; 7 int i,j,k,l,tma,pma,gma; 8 int a[10]={
0,0,1,3,4,6,7}; 9 int nub[105][5]; 10 char nam[105][56],tel[10]; 11 while(scanf("%d",&n)!=EOF) 12 { 13 memset(nub,0,sizeof(nub)); 14 tma=0,pma=0,gma=0; 15 for(l=1;l<=n;l++) 16 { 17 scanf("%d",&s); 18 scanf("%s",nam[l]); 19 for(k=1;k<=s;k++) 20 { 21 int fa=1; 22 scanf("%s",tel); 23 for(i=2;i<=6;i++) 24 { 25 if(tel[a[i]]>=tel[a[i-1]]) 26 { 27 fa=0; 28 break; 29 } 30 } 31 if(tel[0]==tel[1] && tel[0]==tel[3] && tel[0]==tel[4] && tel[0]==tel[6] && tel[0]==tel[7]) 32 { 33 nub[l][1]++; 34 } 35 else if(fa==1) 36 { 37 nub[l][2]++; 38 } 39 else 40 { 41 nub[l][3]++; 42 } 43 } 44 if(nub[l][1]>tma) 45 tma=nub[l][1]; 46 if(nub[l][2]>pma) 47 pma=nub[l][2]; 48 if(nub[l][3]>gma) 49 gma=nub[l][3]; 50 } 51 printf("If you want to call a taxi, you should call:"); 52 int flg=1; 53 for(i=1;i<=n;i++) 54 { 55 if(nub[i][1]==tma) 56 { 57 if(flg==1) 58 { 59 printf(" %s",nam[i]); 60 flg=0; 61 } 62 else 63 { 64 printf(", %s",nam[i]); 65 } 66 } 67 } 68 printf(".\n"); 69 70 printf("If you want to order a pizza, you should call:"); 71 flg=1; 72 for(i=1;i<=n;i++) 73 { 74 if(nub[i][2]==pma) 75 { 76 if(flg==1) 77 { 78 printf(" %s",nam[i]); 79 flg=0; 80 } 81 else 82 { 83 printf(", %s",nam[i]); 84 } 85 } 86 } 87 printf(".\n"); 88 89 printf("If you want to go to a cafe with a wonderful girl, you should call:"); 90 flg=1; 91 for(i=1;i<=n;i++) 92 { 93 if(nub[i][3]==gma) 94 { 95 if(flg==1) 96 { 97 printf(" %s",nam[i]); 98 flg=0; 99 }100 else101 {102 printf(", %s",nam[i]);103 }104 }105 }106 printf(".\n");107 }return 0;108 }
View Code

 

转载于:https://www.cnblogs.com/cyd308/p/4771489.html

你可能感兴趣的文章
phpMyAdmin 后台拿webshell
查看>>
Linux 关机 休眠, 关闭移动设备自动挂载 命令
查看>>
Html唤起手机APP,如果有就唤起,如果没有就跳到下载页。
查看>>
Java中File类如何扫描磁盘所有文件包括子目录及子目录文件
查看>>
VC++ 限制窗口的大小范围的方法
查看>>
结对开发-返回一个整数数组中最大子数组的和(首尾相接版)
查看>>
meanshift-聚类
查看>>
不要if else的编程
查看>>
rn.ShowDialog() == DialogResult.OK
查看>>
20160519
查看>>
SCU 3132(博弈)
查看>>
正则表达式
查看>>
delete archivelog all 无法彻底删除归档日志?
查看>>
Redis五大数据类型
查看>>
大型分布式网站架构技术总结
查看>>
矩阵求导与投影梯度相关问题
查看>>
SVN
查看>>
C语言编程写的一个http下载程序(王德仙)2012-04-08
查看>>
CCF201409-3 字符串匹配(100分)
查看>>
UVALive2203 UVa10042 Smith Numbers【质因数分解+素数判定+数位之和】
查看>>