Problem Description
source:https://uva.onlinejudge.org/external/120/12015.html
Google is one of the most famous Internet search engines which hosts and develops a number of Internetbased
services and products. On its search engine website, an interesting button ‘I’m feeling lucky’
attracts our eyes. This feature could allow the user skip the search result page and goes directly to the
first ranked page. Amazing! It saves a lot of time.
The question is, when one types some keywords and presses ‘I’m feeling lucky’ button, which web
page will appear? Google does a lot and comes up with excellent approaches to deal with it. In this
simplified problem, let us just consider that Google assigns every web page an integer-valued relevance.
The most related page will be chosen. If there is a tie, all the pages with the highest relevance are
possible to be chosen.
Your task is simple, given 10 web pages and their relevance. Just pick out all the possible candidates
which will be served to the user when ‘I’m feeling lucky’.
Input
The input contains multiple test cases. The number of test cases T is in the first line of the input file. For each test case, there are 10 lines, describing the web page and the relevance. Each line contains a character string without any blank characters denoting the URL of this web page and an integer Vi denoting the relevance of this web page. The length of the URL is between 1 and 100 inclusively. (1 ≤ Vi ≤ 100)
Output
For each test case, output several lines which are the URLs of the web pages which are possible to be chosen. The order of the URLs is the same as the input. Please look at the sample output for further information of output format.
Sample Input
2
www.youtube.com 1
www.google.com 2
www.google.com.hk 3
www.alibaba.com 10
www.taobao.com 5
www.bad.com 10
www.good.com 7
www.fudan.edu.cn 8
www.university.edu.cn 9
acm.university.edu.cn 10
www.youtube.com 1
www.google.com 2
www.google.com.hk 3
www.alibaba.com 11
www.taobao.com 5
www.bad.com 10
www.good.com 7
www.fudan.edu.cn 8
acm.university.edu.cn 9
acm.university.edu.cn 10
Sample Output
Case #1: www.alibaba.com www.bad.com acm.university.edu.cn
Case #2: www.alibaba.com
Solution:
source:https://uva.onlinejudge.org/external/120/12015.html
Input
The input contains multiple test cases. The number of test cases T is in the first line of the input file. For each test case, there are 10 lines, describing the web page and the relevance. Each line contains a character string without any blank characters denoting the URL of this web page and an integer Vi denoting the relevance of this web page. The length of the URL is between 1 and 100 inclusively. (1 ≤ Vi ≤ 100)
Output
For each test case, output several lines which are the URLs of the web pages which are possible to be chosen. The order of the URLs is the same as the input. Please look at the sample output for further information of output format.
Sample Input
2
www.youtube.com 1
www.google.com 2
www.google.com.hk 3
www.alibaba.com 10
www.taobao.com 5
www.bad.com 10
www.good.com 7
www.fudan.edu.cn 8
www.university.edu.cn 9
acm.university.edu.cn 10
www.youtube.com 1
www.google.com 2
www.google.com.hk 3
www.alibaba.com 11
www.taobao.com 5
www.bad.com 10
www.good.com 7
www.fudan.edu.cn 8
acm.university.edu.cn 9
acm.university.edu.cn 10
Sample Output
Case #1: www.alibaba.com www.bad.com acm.university.edu.cn
Case #2: www.alibaba.com
Solution:
#include<stdio.h> int main() { int t, i, j, k, max, value[15]; char url[12][105]; while(scanf("%d",&t)==1) { for(i=1;i<=t;i++) { max=0; for(j=1;j<=10;j++) { scanf("%s%d",&url[j], &value[j]); if(value[j]>max) max=value[j]; } printf("Case #%d:\n",i); for(k=1;k<=10;k++) { if(max==value[k]) printf("%s\n",url[k]); } } } return 0; }
No comments:
Post a Comment
Write your comment - Share Knowledge and Experience