zoukankan      html  css  js  c++  java
  • CodeForces 656B

    C - C
    Time Limit:2000MS     Memory Limit:65536KB     64bit IO Format:%I64d & %I64u

    Description

    Btoh yuo adn yuor roomatme lhoate wianshg disehs, btu stlil sdmoeboy msut peorrfm tihs cohre dialy. Oen dya yuo decdie to idourtcne smoe syestm. Yuor rmmotaoe sstgegus teh fooniwllg dael. Yuo argee on tow arayrs of ientgres M adn R, nmebur upmicnog dyas (induiclng teh cunrret oen) wtih sicsescuve irnegets (teh ceurrnt dya is zreo), adn yuo wsah teh diehss on dya D if adn olny if terhe etsixs an iednx i scuh taht D mod M[i] = R[i], otwsehrie yuor rmootmae deos it. Yuo lkie teh cncepot, btu yuor rmotaome's cuinnng simle meaks yuo ssecupt sthnoemig, so yuo itennd to vefriy teh fnerisas of teh aemnrgeet.

    Yuo aer geivn ayarrs M adn R. Cuaclatle teh pceanregte of dyas on wchih yuo edn up dnoig teh wisahng. Amsuse taht yuo hvae iiiftlneny mnay dyas aehad of yuo.

    Input

    The first line of input contains a single integer N (1 ≤ N ≤ 16).

    The second and third lines of input contain N integers each, all between 0 and 16, inclusive, and represent arrays M and R, respectively. All M[i] are positive, for each iR[i] < M[i].

    Output

    Output a single real number. The answer is considered to be correct if its absolute or relative error does not exceed 10 - 4.

    Sample Input

    Input
    1
    2
    0
    Output
    0.500000
    Input
    2
    2 3
    1 0
    Output
    0.666667



    这是一道水题,题目不好懂。
    #include<bits/stdc++.h>
    #define day 1000000
    using namespace std;
    int main()
    {
        int m[17];
        int n[17];
        int num;
        scanf("%d",&num);
        for(int i=0;i<num;i++)
            scanf("%d",&m[i]);
        for(int i=0;i<num;i++)
            scanf("%d",&n[i]);
        double ans=0.0;
        for(int d=1;d <day;d++)
        {
            for(int i=0;i<num;i++)
            {
                if(d%m[i]==n[i]) {ans++;break;}
            }
        }
        printf("%lf
    ",ans/day);
        return 0;
    }
  • 相关阅读:
    紫书 例题8-18 UVa 1442 (扫描法)
    紫书 例题8-17 UVa 1609 (构造法)(详细注释)
    紫书 例题8-16 UVa 1608 (递归)
    紫书 例题8-15 UVa 12174 (滑动窗口)
    紫书 例题8-14 UVa 1607 (二分)
    紫书 例题8-13 UVa 11093 (反证法)
    紫书 例题8-12 UVa 12627 (找规律 + 递归)
    Codeforces Round #441 (Div. 2, by Moscow Team Olympiad)
    CodeForces
    CodeForces 444C 线段树
  • 原文地址:https://www.cnblogs.com/superxuezhazha/p/5355798.html
Copyright © 2011-2022 走看看