zoukankan      html  css  js  c++  java
  • 天梯

    输入样例:

    00100 6
    00000 4 99999
    00100 1 12309
    68237 6 -1
    33218 3 00000
    99999 5 68237
    12309 2 33218

    输出样例:

    68237 6 00100
    00100 1 99999
    99999 5 12309
    12309 2 00000
    00000 4 33218
    33218 3 -1
     1 #include <bits/stdc++.h>
     2 const int INF=0x3f3f3f3f;
     3 typedef long long LL;
     4 const double eps =1e-8;
     5 const int mod=1e9+7;
     6 const int maxn=1e5+10;
     7 using namespace std;
     8 
     9 struct node
    10 {
    11     string ad;//地址 
    12     int num;//数据 
    13     string next;//下一个 
    14 }P[maxn];
    15 int rk[maxn];//排名为i的节点的序号 
    16 string rt;//首地址 
    17 int n;
    18 int st;//开始的序号 
    19 map<string,int> mp;
    20 
    21 int main()
    22 {
    23     #ifdef DEBUG
    24     freopen("sample.txt","r",stdin);
    25     #endif
    26     
    27     cin>>rt>>n;
    28     for(int i=1;i<=n;i++)
    29     {
    30         cin>>P[i].ad>>P[i].num>>P[i].next;
    31         mp[P[i].ad]=i;
    32         if(P[i].ad==rt) st=i;
    33     }
    34     int cnt=0;
    35     while(st!=-1)
    36     {
    37         rk[++cnt]=st;
    38         if(P[st].next!="-1") st=mp[P[st].next];
    39         else st=-1;
    40     }
    41     int L=cnt,R=1;
    42     for(int i=1;i<=cnt;i++)
    43     {
    44         if(i%2)
    45         {
    46             int t=rk[L];
    47             if(i!=cnt) cout<<P[t].ad<<' '<<P[t].num<<' '<<P[rk[R]].ad<<endl;
    48             else cout<<P[t].ad<<' '<<P[t].num<<' '<<"-1";
    49             L--;
    50         }
    51         else
    52         {
    53             int t=rk[R];
    54             if(i!=cnt) cout<<P[t].ad<<' '<<P[t].num<<' '<<P[rk[L]].ad<<endl;
    55             else cout<<P[t].ad<<' '<<P[t].num<<' '<<"-1";
    56             R++;
    57         }
    58     }
    59     
    60     return 0;
    61 }

    -

  • 相关阅读:
    python 获取浏览器窗口句柄
    实现远程连接 Win10的Ubuntu子系统下的MySQL数据库
    Postman 测试微信小程序后台接口
    使用Postman获取小程序码时如何解决47001报错
    富文本编辑框比较
    PIL 生成随机验证码图片
    哪里买书合算
    在文件中读取列表功能
    python函数01
    修改文件内容
  • 原文地址:https://www.cnblogs.com/jiamian/p/12578735.html
Copyright © 2011-2022 走看看