洛谷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;
}

 

posted @ 2018-04-17 21:46  自为风月马前卒  阅读(895)  评论(0编辑  收藏  举报

Contact with me