首页 > 代码库 > POJ 3300 Tour de France(简单题)

POJ 3300 Tour de France(简单题)

【题意简述】:由The drive ratio -- the ratio of the angular velocity of the pedals to that of the wheels -- isn : m where n is the number of teeth on the rear sprocket andm is the number of teeth on the front sprocket. Two drive ratios d1< d2 are adjacent if there is no other drive ratio d1 < d3 < d2. The spread between a pair of drive ratiosd1 < d2 is their quotient: d2 ?d1. You are to compute the maximum spread between two adjacent drive ratios achieved by a particular pair of front and rear clusters.我们可以知道,这个ratios等于n/m,然后d(从1……n)就是每一个ratios的值,现在让我们求最大的di/d(i-1)的值。

【分析】:有些题就是这样,只要我们理解了题意就可以很快的A掉,但如果不理解题意,就……

代码来自:http://www.cnblogs.com/eric-blog/archive/2011/06/01/2067441.html

//184K 16Ms
#include <cstdio>
#include <algorithm>
 
using namespace std;
 
float ratio[100];
int f,r;
float front[10],rear[10];
float max_ratio;
int index;
 
int main()
{
    while(scanf("%d",&f)!=EOF && f)
    {
        scanf("%d",&r);
        for(int i=0; i<f; i++)
            scanf("%f",&front[i]);
        for(int i=0; i<r; i++)
            scanf("%f",&rear[i]);
        index=0;
        for(int i=0; i<r; i++)
        {
            for(int j=0; j<f; j++)
            {
                ratio[index++]=rear[i]/front[j];
            }
        }
        sort(ratio,ratio+index);
        for(int i=0; i<index-1; i++)
            ratio[i]=ratio[i+1]/ratio[i];
        max_ratio=0.0;
        for(int i=0; i<index-1; i++)
        {
            if(max_ratio<ratio[i])
                max_ratio=ratio[i];
        }
        printf("%.2f\n",max_ratio);
 
    }
    return 0;
}


POJ 3300 Tour de France(简单题)