zoukankan      html  css  js  c++  java
  • Codeforces Round #279 (Div. 2) B. Queue

    B. Queue
    time limit per test
    2 seconds
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    During the lunch break all n Berland State University students lined up in the food court. However, it turned out that the food court, too, has a lunch break and it temporarily stopped working.

    Standing in a queue that isn't being served is so boring! So, each of the students wrote down the number of the student ID of the student that stands in line directly in front of him, and the student that stands in line directly behind him. If no one stands before or after a student (that is, he is the first one or the last one), then he writes down number 0 instead (in Berland State University student IDs are numerated from 1).

    After that, all the students went about their business. When they returned, they found out that restoring the queue is not such an easy task.

    Help the students to restore the state of the queue by the numbers of the student ID's of their neighbors in the queue.

    Input

    The first line contains integer n (2 ≤ n ≤ 2·105) — the number of students in the queue.

    Then n lines follow, i-th line contains the pair of integers ai, bi (0 ≤ ai, bi ≤ 106), where ai is the ID number of a person in front of a student and bi is the ID number of a person behind a student. The lines are given in the arbitrary order. Value 0 is given instead of a neighbor's ID number if the neighbor doesn't exist.

    The ID numbers of all students are distinct. It is guaranteed that the records correspond too the queue where all the students stand in some order.

    Output

    Print a sequence of n integers x1, x2, ..., xn — the sequence of ID numbers of all the students in the order they go in the queue from the first student to the last one.

    Examples
    input
    4
    92 31
    0 7
    31 0
    7 141
    output
    92 7 31 141 
    Note

    The picture illustrates the queue for the first sample.

    题意:告诉你前驱和后继,求原序列;

    思路:两个数位置相差2;

       找到前后的起点,两个方向扫一遍;

    #include<bits/stdc++.h>
    using namespace std;
    #define ll __int64
    #define esp 0.00000000001
    const int N=3e5+10,M=1e6+10,inf=1e9,mod=1e9+7;
    int a[M];
    int b[M];
    int ans[M];
    int flag[M];
    
    int main()
    {
        int x,y,z,i,t;
        scanf("%d",&x);
        for(i=0;i<x;i++)
        {
            scanf("%d%d",&y,&z);
            a[y]=z;
            b[z]=y;
            flag[y]++;
            flag[z]++;
        }
        int st=0;
        int ji=0;
        while(a[st])
        {
            ans[ji+2]=a[st];
            flag[a[st]]=0;
            st=a[st];
            ji+=2;
        }
        if(x&1)
        {
            int en=0;
            for(i=1;i<=M;i++)
            if(flag[i]&&!a[i])
            en=i;
            int ji=x;
            while(en)
            {
                ans[ji]=en;
                en=b[en];
                ji-=2;
            }
        }
        else
        {
            int ji=x-1;
            int en=0;
            while(b[en])
            {
                ans[ji]=b[en];
                en=b[en];
                ji-=2;
            }
        }
        for(i=1;i<=x;i++)
        printf("%d ",ans[i]);
        return 0;
    }
    B. Queue
    time limit per test
    2 seconds
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    During the lunch break all n Berland State University students lined up in the food court. However, it turned out that the food court, too, has a lunch break and it temporarily stopped working.

    Standing in a queue that isn't being served is so boring! So, each of the students wrote down the number of the student ID of the student that stands in line directly in front of him, and the student that stands in line directly behind him. If no one stands before or after a student (that is, he is the first one or the last one), then he writes down number 0 instead (in Berland State University student IDs are numerated from 1).

    After that, all the students went about their business. When they returned, they found out that restoring the queue is not such an easy task.

    Help the students to restore the state of the queue by the numbers of the student ID's of their neighbors in the queue.

    Input

    The first line contains integer n (2 ≤ n ≤ 2·105) — the number of students in the queue.

    Then n lines follow, i-th line contains the pair of integers ai, bi (0 ≤ ai, bi ≤ 106), where ai is the ID number of a person in front of a student and bi is the ID number of a person behind a student. The lines are given in the arbitrary order. Value 0 is given instead of a neighbor's ID number if the neighbor doesn't exist.

    The ID numbers of all students are distinct. It is guaranteed that the records correspond too the queue where all the students stand in some order.

    Output

    Print a sequence of n integers x1, x2, ..., xn — the sequence of ID numbers of all the students in the order they go in the queue from the first student to the last one.

    Examples
    input
    4
    92 31
    0 7
    31 0
    7 141
    output
    92 7 31 141 
    Note

    The picture illustrates the queue for the first sample.

  • 相关阅读:
    Luogu P1462 通往奥格瑞玛的道路
    数据结构学习笔记——图的应用(最短路径和关键路径)
    数据结构学习笔记——特殊矩阵的压缩存储
    数据结构学习笔记——线性表
    图像分类综述—A survey on Semi-, Self- and Unsupervsed Techniques in Image Classification Similarities, Differences & Combinations
    目标检测综述
    操作系统学习
    Git官网下载太慢解决方法
    阿里云2020上云采购季,你最pick哪个产品组合?
    任务不再等待!玩转DataWorks资源组
  • 原文地址:https://www.cnblogs.com/jhz033/p/5658213.html
Copyright © 2011-2022 走看看