3027 - Corporative Network

來源:互聯網
上載者:User

標籤:

3027 - Corporative Network

思路:並查集;

cost記錄當前點到根節點的距離,每次合并時路徑壓縮將cost更新。

 1 #include<stdio.h> 2 #include<algorithm> 3 #include<iostream> 4 #include<string.h> 5 #include<math.h> 6 #include<stack> 7 #include<set> 8 #include<queue> 9 using namespace std;10 int   bin[20005];11 int   du[20005];12 char str[20];13 int main(void)14 {15         int i,j;16         int n;17         scanf("%d",&n);18         while(n--)19         {20                 int m;21                 scanf("%d",&m);22                 for(i = 1; i <= 20005; i++)23                         bin[i] = i,du[i] = 0;24                 while(scanf("%s",str),str[0]!=‘O‘)25                 {26                         int x,y;27                         if(str[0]==‘I‘)28                         {29                                 scanf("%d %d",&x,&y);30                                 int xx;31                                 for(xx = y; bin[xx]!=xx;)32                                 {33                                         xx = bin[xx];34                                         du[y]+=du[xx];35                                 }36                                 bin[y] = xx;37                                 bin[x] = xx;38                                 du[x] = du[y]+abs(x-y)%1000;39                         }40                         else41                         {      int sum = 0;42                                 int xx;scanf("%d",&x);43                                 for(xx = x; bin[xx]!=xx;)44                                 {45                                         xx=bin[xx],du[x]+=du[xx];46                                 }47                                 bin[x] = xx;48                                 printf("%d\n",du[x]);49                         }50                 }51         }52         return 0;53 }

 

3027 - Corporative Network

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.