码迷,mamicode.com
首页 > 其他好文 > 详细

so easy(unordered_map+并查集)

时间:2019-11-05 21:19:19      阅读:94      评论:0      收藏:0      [点我收藏+]

标签:str   code   mic   first   pad   bottom   color   self   技术   

There are nn points in an array with index from 11 to nn, and there are two operations to those points.

1: 1 \ x1 x marking the point xx is not available

2: 2 \ x2 x query for the index of the first available point after that point (including xx itself) .

 

技术图片

样例输入

5 3
1 2
2 2
2 1

样例输出

3
1
 1 #include <bits/stdc++.h>
 2 
 3 using namespace std;
 4 
 5 unordered_map<int, int> fa;
 6 
 7 int findfa(int x)
 8 {
 9     if (!fa.count(x)) return x;
10     return fa[x] = findfa(fa[x]);
11 }
12 
13 int main()
14 {
15     int n, q;
16     int op, x;
17     scanf("%d %d", &n, &q);
18     while (q--)
19     {
20         scanf("%d %d", &op, &x);
21         if(op == 1) fa[x] = findfa(x + 1);
22         else printf("%d\n", findfa(x));
23     }
24     return 0;
25 }

 

 

 

 

so easy(unordered_map+并查集)

标签:str   code   mic   first   pad   bottom   color   self   技术   

原文地址:https://www.cnblogs.com/0xiaoyu/p/11801488.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!