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
- vfr video
- 자원부족
- Spring Batch
- terminal
- JanusWebRTCGateway
- pytest
- 오블완
- k8s #kubernetes #쿠버네티스
- mp4fpsmod
- VARCHAR (1)
- JanusWebRTCServer
- 깡돼후
- preemption #
- python
- tolerated
- JanusGateway
- 개성국밥
- taint
- PytestPluginManager
- JanusWebRTC
- 겨울 부산
- PersistenceContext
- Value too long for column
- 헥사고날아키텍처 #육각형아키텍처 #유스케이스
- 코루틴 빌더
- 코루틴 컨텍스트
- kotlin
- 달인막창
- 티스토리챌린지
- table not found
Archives
너와 나의 스토리
[BOJ] 5670 휴대폰 자판 본문
반응형
문제: https://www.acmicpc.net/problem/5670
Ries님의 블로그를 참고하여 문제를 풀었다
마지막에 생성한 trie를 할당 해제(delete root)를 안해줘서 메모리 초과가 났다 ㅠㅠ
입력 받을 때, while (scanf("%d", &n))로만 하면 출력 초과가 난다. -> while (scanf("%d", &n)>0)로 바꿔주면 됨
소스 코드:
...더보기
#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
using namespace std;
int n;
struct trie {
trie* next[26];
int word, branch;
trie() {
fill(next, next + 26, nullptr);
word = branch = 0;
}
~trie() {
for (int i = 0; i < 26; i++) {
if (next[i]) delete(next[i]);
}
}
void insert(const char* key) {
if (*key == '\0') {
branch++;
return;
}
word++;
int num = *key - 'a';
if (!next[num]) {
next[num] = new trie();
branch++;
/*
hello랑 hell가 있는 경우
hello를 치려면 hell에서 한 번 더 쳐야하므로
문자열이 끝난 경우 그 다음 trie의 branch를 +1 해준다
*/
}
next[num]->insert(key + 1);
}
long long func(bool isRoot = false) {
long long res = 0;
if (isRoot || branch > 1) res = word;
for (int i = 0; i < 26; i++) {
if (next[i]) res += next[i]->func();
}
return res;
}
};
int main() {
while (scanf("%d", &n)>0) {
trie *root = new trie;
for (int i = 0; i < n; i++) {
char c[80];
scanf("%s", c);
root->insert(c);
}
printf("%.2lf\n", 1.0*root->func(true) / n);
delete root;
}
return 0;
}
반응형
'Algorithm > 트라이(Trie)' 카테고리의 다른 글
[BOJ] 5446 용량 부족 (0) | 2019.11.23 |
---|---|
[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] 14425 문자열 집합 - trie / map으로 풀기 (0) | 2019.08.17 |
Comments