zoukankan      html  css  js  c++  java
  • 洛谷P4413 [COCI2006-2007#2] R2(可持久化平衡树维护NTT)

    题意翻译

    设S=(R1+R2)/2,给定R1与S (-1000<=R1,S<=1000)(1000<=R1,S<=1000) ,求R2。

    感谢@Xeonacid 提供的翻译

    题目描述

    The number S is called the mean of two numbers R1 and R2 if S is equal to (R1+R2)/2. Mirko's birthday present for Slavko was two integers R1 and R2. Slavko promptly calculated their mean which also happened to be an integer but then lost R2! Help Slavko restore R2.

    输入输出格式

    输入格式:

    The first and only line of input contains two integers R1 and S, both between -1000 and 1000.

    输出格式:

    Output R2 on a single line.

    输入输出样例

    输入样例#1: 复制
    11 15
    输出样例#1: 复制
    19
    输入样例#2: 复制
    4 3
    输出样例#2: 复制
    2


    按照fhq大神的话来说
    这题还用做?


    #include<cstdio>
    using namespace std;
    const int MAXN = 10005;
    inline int read() {
        char c = getchar(); int x = 0, f = 1;
        while(c < '0' || c > '9') { if(c == '-')f = -1; c = getchar(); }
        while(c >= '0' && c <= '9') x = x * 10 + c - '0', c = getchar();
        return x * f;
    }
    int main() {
        #ifdef WIN32
        freopen("a.in", "r", stdin);
        #endif
        int R1 = read(), S = read();
        printf("%d",2 * S - R1);
        return 0;
    }
  • 相关阅读:
    day_13
    day_12
    day_11
    day_10
    day_09
    day_08
    day_07
    day_06
    cmder 基本配置和使用
    php自动加载
  • 原文地址:https://www.cnblogs.com/zwfymqz/p/8870238.html
Copyright © 2011-2022 走看看