zoukankan      html  css  js  c++  java
  • cf493B Vasya and Wrestling

    B. Vasya and Wrestling
    time limit per test 2 seconds
    memory limit per test 256 megabytes
    input standard input
    output standard output

    Vasya has become interested in wrestling. In wrestling wrestlers use techniques for which they are awarded points by judges. The wrestler who gets the most points wins.

    When the numbers of points of both wrestlers are equal, the wrestler whose sequence of points is lexicographically greater, wins.

    If the sequences of the awarded points coincide, the wrestler who performed the last technique wins. Your task is to determine which wrestler won.

    Input

    The first line contains number n — the number of techniques that the wrestlers have used (1 ≤ n ≤ 2·105).

    The following n lines contain integer numbers ai (|ai| ≤ 109, ai ≠ 0). If ai is positive, that means that the first wrestler performed the technique that was awarded with ai points. And if ai is negative, that means that the second wrestler performed the technique that was awarded with ( - ai) points.

    The techniques are given in chronological order.

    Output

    If the first wrestler wins, print string "first", otherwise print "second"

    Sample test(s)
    input
    5
    1
    2
    -3
    -4
    3
    output
    second
    input
    3
    -1
    -2
    3
    output
    first
    input
    2
    4
    -4
    output
    second
    Note

    Sequence x  =  x1x2... x|x| is lexicographically larger than sequence y  =  y1y2... y|y|, if either |x|  >  |y| and x1  =  y1,  x2  =  y2, ... ,  x|y|  =  y|y|, or there is such number r (r  <  |x|, r  <  |y|), that x1  =  y1,  x2  =  y2,  ... ,  xr  =  yr and xr  +  1  >  yr  +  1.

    We use notation |a| to denote length of sequence a.

    模拟

    #include <stdio.h>
    #include <iostream>
    #include <cstring>
    #include <algorithm>
    #include <cmath>
    #define ll long long 
    using namespace std;
    ll i,j,t,n,m,l,r,k,z,y,x;
    ll a[200005],b[200005];
    ll suma,sumb;
    int main()
    {
    	scanf("%I64d",&n);
    	a[0]=b[0]=0;
    	suma=sumb=0;
    	for (i=1;i<=n;i++)
    	{
    		scanf("%I64d",&x);
    		if (x>0)
    		{
    			a[++a[0]]=x;
    			suma+=x;
    		}
    		if (x<0)
    		{
    			b[++b[0]]=-x;
    			sumb+=-x;
    		}
    		t=x;
    	}
    	if (suma>sumb) printf("first
    ");
    	else if (suma<sumb) printf("second
    ");
    	else
    	{
    		for (i=1;i<=max(a[0],b[0]);i++) if (a[i]!=b[i]) break;
    		if (a[i]>b[i]) printf("first
    ");
    		else if (a[i]<b[i]) printf("second
    ");
    		else
    		{
    			if (t>0) printf("first
    ");
    			else printf("second
    ");
    		}
    	}
    	return 0;
    }
    
    ——by zhber,转载请注明来源
  • 相关阅读:
    拓端tecdat|R语言具有Student-t分布改进的GARCH(1,1)模型的贝叶斯估计
    拓端tecdat|R语言有极值(EVT)依赖结构的马尔可夫链(MC)对洪水极值分析
    拓端tecdat|R语言Lee-Carter模型对年死亡率建模预测预期寿命
    拓端tecdat|R语言中的模拟过程和离散化:泊松过程和维纳过程
    接口自动化文章收藏
    【转】python中获得当前目录和上级目录
    面试题
    【转】python字符串/元组/列表/字典互转
    session关联接口
    r.json()
  • 原文地址:https://www.cnblogs.com/zhber/p/4141930.html
Copyright © 2011-2022 走看看