zoukankan      html  css  js  c++  java
  • Three Garlands~Educational Codeforces Round 35

    C. Three Garlands
    time limit per test
    2 seconds
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    Mishka is decorating the Christmas tree. He has got three garlands, and all of them will be put on the tree. After that Mishka will switch these garlands on.

    When a garland is switched on, it periodically changes its state — sometimes it is lit, sometimes not. Formally, if i-th garland is switched on during x-th second, then it is lit only during seconds xx + ki,x + 2kix + 3ki and so on.

    Mishka wants to switch on the garlands in such a way that during each second after switching the garlands on there would be at least one lit garland. Formally, Mishka wants to choose three integersx1, x2 and x3 (not necessarily distinct) so that he will switch on the first garland during x1-th second, the second one — during x2-th second, and the third one — during x3-th second, respectively, and during each second starting from max(x1, x2, x3) at least one garland will be lit.

    Help Mishka by telling him if it is possible to do this!

    Input

    The first line contains three integers k1, k2 and k3 (1 ≤ ki ≤ 1500) — time intervals of the garlands.

    Output

    If Mishka can choose moments of time to switch on the garlands in such a way that each second after switching the garlands on at least one garland will be lit, print YES.

    Otherwise, print NO.

    Examples
    input
    Copy
    2 2 3
    output
    Copy
    YES
    input
    Copy
    4 2 3
    output
    Copy
    NO
    Note

    In the first example Mishka can choose x1 = 1, x2 = 2, x3 = 1. The first garland will be lit during seconds 1, 3, 5, 7, ..., the second — 2, 4, 6, 8, ..., which already cover all the seconds after the 2-nd one. It doesn't even matter what x3 is chosen. Our choice will lead third to be lit during seconds1, 4, 7, 10, ..., though.

    In the second example there is no way to choose such moments of time, there always be some seconds when no garland is lit.

    这题想不出了,于是暴力一发,就A了

    暴力出奇迹啊

    仔细想,这题确实傻逼

     1 #include <cstdio>
     2 #include <cstring>
     3 #include <algorithm>
     4 #include <stack>
     5 #include <string>
     6 #include <math.h>
     7 #include <vector>
     8 using namespace std;
     9 const int maxn = 2e5 + 10 ;
    10 const int INF = 0x7fffffff;
    11 
    12 int main() {
    13     int a[5];
    14     while(scanf("%d%d%d", &a[0], &a[1], &a[2]) != EOF) {
    15         sort(a, a + 3);
    16         if (a[0] == 1) {
    17             printf("YES
    ");
    18             continue;
    19         }
    20         if (a[1] == 2 && a[0] == 2) {
    21             printf("YES
    ");
    22             continue;
    23         }
    24         if (a[0] == 3 && a[1] == 3 && a[2] == 3)  {
    25             printf("YES
    ");
    26             continue;
    27         }
    28         if (a[0] == 2 && a[1] == 4 && a[2] == 4)   {
    29             printf("YES
    ");
    30             continue;
    31         }
    32         printf("NO
    ");
    33     }
    34     return 0;
    35 }
  • 相关阅读:
    vs编译在win xp电脑上运行的win32程序遇到的问题记录(无法定位程序输入点GetTickCount64于动态链接库KERNEL32.dll)
    (转载)用VS2012或VS2013在win7下编写的程序在XP下运行就出现“不是有效的win32应用程序“
    记录编译方面的问题(重定义)
    记录一个问题:win32程序release版本和debug版本运行效果不同
    C++复制、压缩文件夹
    foreach 和 list.foreach 初步测试
    转载字典地址:http://blog.csdn.net/aladdinty/article/details/3591789
    WindowsApi 解压缩文件
    23种简洁好看的扁平化模板
    Session为null 问题
  • 原文地址:https://www.cnblogs.com/qldabiaoge/p/9080602.html
Copyright © 2011-2022 走看看