hiho Week 17 register

Ended

Participants:394

Verdict:Accepted
Score:100 / 100
Submitted:2014-10-31 20:08:32

Lang:G++

Edit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include<iostream>
#include<string>
#include<string.h>
#include<map>
using namespace std;
const int maxn=100002;
struct node
{
    int v,next;
}tree[maxn];
string name[maxn];
int st[maxn];
int fa[maxn],height[maxn],f[maxn];
int cnt;
map<string,int> mapname;
void add(int u,int v)
{
    tree[cnt].v=v;
    tree[cnt].next=st[u];
    st[u]=cnt++;
}
int find(int x)
{
    return f[x]?find(f[x]):x;
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX