백준5052 전화번호 목록

문제 링크

  • http://icpc.me/5052

문제 출처

  • 2007 NCPC A번

사용 알고리즘

  • Trie

풀이

트라이 기초 문제입니다.

전화번호를 각각 트라이에 넣어주면서 다른 전화번호의 prefix인지, 혹은 다른 전화번호의 prefix가 되는지 확인해주면 됩니다.

전체 코드

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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#include <bits/stdc++.h>
using namespace std;

struct Node{
	bool valid;
	int child[10];
	Node(){
		for(int i=0; i<10; i++) child[i] = -1;
		valid = 0;
	}
};

vector<Node> trie;
bool flag = 0;

void insert(string &s, int idx, int node){
	if(idx == s.size()){
		trie[node].valid = 1;
		return;
	}
	int now = s[idx] - '0';
	if(trie[node].valid) flag = 1;
	if(idx == s.size()-1 && trie[node].child[now] != -1) flag = 1;
	if(trie[node].child[now] == -1){
		trie[node].child[now] = trie.size();
		trie.push_back(Node());
	}
	insert(s, idx+1, trie[node].child[now]);
}

void init(){
	trie.clear();
	trie.push_back(Node());
	flag = 0;
}

void solve(){
	init();
	int n; cin >> n;
	for(int i=0; i<n; i++){
		string s; cin >> s; insert(s, 0, 0);
	}
	if(flag) cout << "NO\n";
	else cout << "YES\n";
}

int main(){
	ios_base::sync_with_stdio(0); cin.tie(0);
	int t; cin >> t;
	while(t--) solve();
}