zoukankan      html  css  js  c++  java
  • Codeforce 733B

    Very soon there will be a parade of victory over alien invaders in Berland. Unfortunately, all soldiers died in the war and now the army consists of entirely new recruits, many of whom do not even know from which leg they should begin to march. The civilian population also poorly understands from which leg recruits begin to march, so it is only important how many soldiers march in step.

    There will be n columns participating in the parade, the i-th column consists of li soldiers, who start to march from left leg, and ri soldiers, who start to march from right leg.

    The beauty of the parade is calculated by the following formula: if L is the total number of soldiers on the parade who start to march from the left leg, and R is the total number of soldiers on the parade who start to march from the right leg, so the beauty will equal |L - R|.

    No more than once you can choose one column and tell all the soldiers in this column to switch starting leg, i.e. everyone in this columns who starts the march from left leg will now start it from right leg, and vice versa. Formally, you can pick no more than one index i and swap values li and ri.

    Find the index of the column, such that switching the starting leg for soldiers in it will maximize the the beauty of the parade, or determine, that no such operation can increase the current beauty.

    Input

    The first line contains single integer n (1 ≤ n ≤ 105) — the number of columns.

    The next n lines contain the pairs of integers li and ri (1 ≤ li, ri ≤ 500) — the number of soldiers in the i-th column which start to march from the left or the right leg respectively.

    Output

    Print single integer k — the number of the column in which soldiers need to change the leg from which they start to march, or 0 if the maximum beauty is already reached.

    Consider that columns are numbered from 1 to n in the order they are given in the input data.

    If there are several answers, print any of them.

    Examples
    input
    3
    5 6
    8 9
    10 3
    output
    3
    input
    2
    6 5
    5 6
    output
    1
    input
    6
    5 9
    1 3
    4 8
    4 5
    23 54
    12 32
    output
    0
    Note

    In the first example if you don't give the order to change the leg, the number of soldiers, who start to march from the left leg, would equal5 + 8 + 10 = 23, and from the right leg — 6 + 9 + 3 = 18. In this case the beauty of the parade will equal |23 - 18| = 5.

    If you give the order to change the leg to the third column, so the number of soldiers, who march from the left leg, will equal 5 + 8 + 3 = 16, and who march from the right leg — 6 + 9 + 10 = 25. In this case the beauty equals |16 - 25| = 9.

    It is impossible to reach greater beauty by giving another orders. Thus, the maximum beauty that can be achieved is 9.

    题解:暴力枚举就好啦

     1 #include <iostream>
     2 #include <algorithm>
     3 #include <cstring>
     4 #include <cstdio>
     5 #include <vector>
     6 #include <cstdlib>
     7 #include <iomanip>
     8 #include <cmath>
     9 #include <ctime>
    10 #include <map>
    11 #include <set>
    12 using namespace std;
    13 #define lowbit(x) (x&(-x))
    14 #define max(x,y) (x>y?x:y)
    15 #define min(x,y) (x<y?x:y)
    16 #define MAX 100000000000000000
    17 #define MOD 1000000007
    18 #define pi acos(-1.0)
    19 #define ei exp(1)
    20 #define PI 3.141592653589793238462
    21 #define INF 0x3f3f3f3f3f
    22 #define mem(a) (memset(a,0,sizeof(a)))
    23 typedef long long ll;
    24 const int N=100005;
    25 const int mod=1e9+7;
    26 struct Node
    27 {
    28     int x,y;
    29 }a[N];
    30 int main()
    31 {
    32     std::ios::sync_with_stdio(false);
    33     int n;
    34     cin>>n;
    35     int sl=0,sr=0;
    36     for(int i=0;i<n;i++){
    37         cin>>a[i].x>>a[i].y;
    38         sl+=a[i].x;
    39         sr+=a[i].y;
    40     }
    41     int s=abs(sl-sr);
    42     int d=0,t=0;
    43     for(int i=0;i<n;i++){
    44         if(s<abs((sl-a[i].x+a[i].y)-(sr-a[i].y+a[i].x))){
    45             s=abs((sl-a[i].x+a[i].y)-(sr-a[i].y+a[i].x));
    46             t=i+1;
    47         }
    48     }
    49     cout<<t<<endl;
    50     return 0;
    51 }
  • 相关阅读:
    Eclipse远程调试,服务器为linux的配置
    关于javascript代码执行时间的计算
    Java编程中容易疏忽的知识点
    为什么要开发自己的框架、平台或插件
    算法在计算中的作用
    程序员的自豪感
    iOS,Objective-C Runtime
    iOS,本地化(国际化)字符
    iOS,应用崩溃日志分析
    iOS,信息加解密
  • 原文地址:https://www.cnblogs.com/wydxry/p/7263321.html
Copyright © 2011-2022 走看看