Recent Posts
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Spring Batch
- JanusWebRTCServer
- kotlin
- Value too long for column
- JanusWebRTC
- pytest
- JanusGateway
- 코루틴 빌더
- k8s #kubernetes #쿠버네티스
- JanusWebRTCGateway
- 자원부족
- 겨울 부산
- 코루틴 컨텍스트
- 달인막창
- VARCHAR (1)
- tolerated
- 개성국밥
- table not found
- 티스토리챌린지
- PersistenceContext
- python
- 깡돼후
- 헥사고날아키텍처 #육각형아키텍처 #유스케이스
- vfr video
- terminal
- PytestPluginManager
- taint
- preemption #
- mp4fpsmod
- 오블완
Archives
너와 나의 스토리
[BOJ] 5446 용량 부족 본문
반응형
문제: https://www.acmicpc.net/problem/5446
문제 풀이:
1. 지워야 할 파일들을 trie에 insert
2. 지우면 안 될 파일들이 이름이 trie에 존재하는 것들과 겹치는 부분을 체크 (no=true)
3. 전체 trie 순환하면서 no가 아닌 부분에 도달하면 res++하고 그 라인은 더 이상 보지 않음
* [rm *]이 가능하려면 root에 존재하는 모든 next에 대해 no 플래그가 off 되어 있어야 한다.
이를 체크하기 위해 2번 작업을 수행하다 no를 한 번이라도 체크하게 되면 root->no=true가 되게 하였다.
root->no가 false라면 rm *이 가능하므로 답은 1이 된다.
소스코드:
#include <iostream>
#define QSIZE 63002
using namespace std;
int res;
struct trie {
trie* next[63];
bool finish;
bool no;
trie() {
for (int i = 0; i < 63; i++) {
next[i] = nullptr;
}
finish = false;
no = false;
}
~trie() {
for (int i = 0; i < 63; i++) {
if(!next[i]) delete next[i];
}
}
void insert(const char * key) {
if (*key == '\0') {
finish = true;
return;
}
int n=62;
if ('a' <= *key&&*key <= 'z') n = *key - 'a';
else if ('A' <= *key&&*key <= 'Z') n = (*key - 'A') + 26;
else if ('0'<=*key &&*key<='9') n = (*key-'0')+52;
if (!next[n]) {
next[n] = new trie();
}
next[n]->insert(key + 1);
}
void check(const char * key) {
if (*key == '\0') return;
int n = 62;
if ('a' <= *key&&*key <= 'z') n = *key - 'a';
else if ('A' <= *key&&*key <= 'Z') n = (*key - 'A') + 26;
else if ('0' <= *key &&*key <= '9') n = (*key - '0') + 52;
if (next[n]) {
next[n]->no = true;
no = true;
}
else return;
next[n]->check(key + 1);
}
};
trie *qq[QSIZE];
int tc, n, m;
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> tc;
for (int t = 1; t <= tc; t++) {
res = 0;
trie *root = new trie;
cin >> n;
for (int i = 0; i < n; i++) {
char c[22];
cin >> c;
root->insert(c);
}
cin >> m;
for (int j = 0; j < m; j++) {
char c[22];
cin >> c;
root->check(c);
}
if (!root->no) {
cout << "1\n";
continue;
}
qq[0] = root;
int front = 0;
int top = 1;
while (front != top) {
trie* cur = qq[front];
front = (front + 1) % QSIZE;
for (int i = 0; i < 63; i++) {
if (cur->next[i]) {
if (cur->next[i]->no) {
if (cur->next[i]->finish) res++;
qq[top] = cur->next[i];
top = (top + 1) % QSIZE;
}
else res++;
}
}
}
cout << res << '\n';
}
return 0;
}
반응형
'Algorithm > 트라이(Trie)' 카테고리의 다른 글
[Programmers] 2020 신입 개발자 블라인드 채용 1차 코딩 테스트 - 가사 검색 (0) | 2020.05.06 |
---|---|
[BOJ] 10256 돌연변이 (0) | 2019.09.01 |
[BOJ] 5052 전화번호 목록 (0) | 2019.08.27 |
[BOJ] 9202 Boggle / Run-Time Check Failure #2 - S 해결 (0) | 2019.08.18 |
[BOJ] 5670 휴대폰 자판 (0) | 2019.08.18 |
Comments