zoukankan      html  css  js  c++  java
  • 1837. Isenbaev's Number

    Vladislav Isenbaev is a two-time champion of Ural, vice champion of TopCoder Open 2009, and absolute champion of ACM ICPC 2009. In the time you will spend reading this problem statement Vladislav would have solved a problem. Maybe, even two…
    Since Vladislav Isenbaev graduated from the Specialized Educational and Scientific Center at Ural State University, many of the former and present contestants at USU have known him for quite a few years. Some of them are proud to say that they either played in the same team with him or played in the same team with one of his teammates…
    Let us define Isenbaev's number as follows. This number for Vladislav himself is 0. For people who played in the same team with him, the number is 1. For people who weren't his teammates but played in the same team with one or more of his teammates, the number is 2, and so on. Your task is to automate the process of calculating Isenbaev's numbers so that each contestant at USU would know their proximity to the ACM ICPC champion.

    Input

    The first line contains the number of teams n (1 ≤ n ≤ 100). In each of the following n lines you are given the names of the three members of the corresponding team. The names are separated with a space. Each name is a nonempty line consisting of English letters, and its length is at most 20 symbols. The first letter of a name is capital and the other letters are lowercase.

    Output

    For each contestant mentioned in the input data output a line with their name and Isenbaev's number. If the number is undefined, output “undefined” instead of it. The contestants must be ordered lexicographically.

    Sample

    inputoutput
    7
    Isenbaev Oparin Toropov
    Ayzenshteyn Oparin Samsonov
    Ayzenshteyn Chevdar Samsonov
    Fominykh Isenbaev Oparin
    Dublennykh Fominykh Ivankov
    Burmistrov Dublennykh Kurpilyanskiy
    Cormen Leiserson Rivest
    
    Ayzenshteyn 2
    Burmistrov 3
    Chevdar 3
    Cormen undefined
    Dublennykh 2
    Fominykh 1
    Isenbaev 0
    Ivankov 2
    Kurpilyanskiy 3
    Leiserson undefined
    Oparin 1
    Rivest undefined
    Samsonov 2
    Toropov 1
    
    Problem Author: folklore Problem Source: Ural Championship 2011
  • 相关阅读:
    根据用户输入的时间查询那天的数据
    动软 生成 linq相关DAO
    pdf 移除密码 去除水印 批量去除水印 编辑文字 批量替换文字
    利用OCR识别扫描的jpg、tif文件的文字
    jstat命令详解
    IDEA自动编译设置
    IntelliJ IDEA:Field injection is not recommended
    阿里巴巴Druid数据库连接池配置详解及使用
    com.mysql.jdbc.Driver和com.mysql.cj.jdbc.Driver的区别
    Java对元与分的金额的转换
  • 原文地址:https://www.cnblogs.com/sdau--codeants/p/3236751.html
Copyright © 2011-2022 走看看