zoukankan      html  css  js  c++  java
  • Codeforces Round #564 (Div. 2) A. Nauuo and Votes

    链接:https://codeforces.com/contest/1173/problem/A

    题意:

    Nauuo is a girl who loves writing comments.

    One day, she posted a comment on Codeforces, wondering whether she would get upvotes or downvotes.

    It's known that there were xx persons who would upvote, yy persons who would downvote, and there were also another zz persons who would vote, but you don't know whether they would upvote or downvote. Note that each of the x+y+zx+y+z people would vote exactly one time.

    There are three different results: if there are more people upvote than downvote, the result will be "+"; if there are more people downvote than upvote, the result will be "-"; otherwise the result will be "0".

    Because of the zz unknown persons, the result may be uncertain (i.e. there are more than one possible results). More formally, the result is uncertain if and only if there exist two different situations of how the zz persons vote, that the results are different in the two situations.

    Tell Nauuo the result or report that the result is uncertain.

    思路:

    x-y的绝对值大于z就有稳定的答案,想同时特判z等于0.

    代码:

    #include <bits/stdc++.h>
    
    using namespace std;
    
    typedef long long LL;
    const int MAXN = 1e5 + 10;
    const int MOD = 1e9 + 7;
    int n, m, k, t;
    
    int main()
    {
    //    freopen("test.in", "r", stdin);
        int x, y, z;
        cin >> x >> y >> z;
        if (z < abs(x - y) || z == 0)
        {
            if (x > y)
                cout << "+" << endl;
            else if (y > x)
                cout << "-" << endl;
            else
                cout << "0" << endl;
        }
        else
            cout << "?" << endl;
    
        return 0;
    }
    

      

  • 相关阅读:
    APP界面设计之尺寸介绍
    设计师应该知道的那些事儿(一)
    PS制作高光导航背景
    URL长度限制
    问自己的技术问题
    JavaScript实现生成GUID(全局统一标识符)
    JS操作数组,for循环新技能get
    win7/Win8/Win10, IIS7.5/IIS8/IIS10 配置伪静态
    .NET WebAPI生成Excel
    .net WebAPI 传递对象参数
  • 原文地址:https://www.cnblogs.com/YDDDD/p/10990861.html
Copyright © 2011-2022 走看看