답안 #104054

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
104054 2019-04-03T20:13:48 Z Kewo Savez (COCI15_savez) C++14
0 / 120
76 ms 47096 KB
#include <bits/stdc++.h>
#define pb push_back
#define ppb pop_back
#define fi first
#define se second
#define mid ((x + y) / 2)
#define left (ind * 2)
#define right (ind * 2 + 1)
#define mp make_pair
#define timer ((double)clock() / CLOCKS_PER_SEC)
#define endl "\n"
#define spc " "
#define d1(x) cerr<<#x<<":"<<x<<endl
#define d2(x, y) cerr<<#x<<":"<<x<<" "<<#y<<":"<<y<<endl
#define d3(x, y, z) cerr<<#x<<":"<<x<<" "<<#y<<":"<<y<<" "<<#z<<":"<<z<<endl
#define fast_io() ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0)
using namespace std;

typedef long long int lli;
typedef pair<int, int> ii;
typedef pair<char, char> cc;
typedef pair<ii, int> iii;
typedef pair<double, double> dd;

const int N = (int)(5e5 + 5);
const int LOG = (int)(20);

struct node {
	int ind, word;
	map<cc, int> ed;
}tree[N];

int n, sz = 1;
string str[N];

void add(string s) {
	int idx = 1;
	for(int i = 0; i < (int)s.length(); i++) {
		char fc = s[i], lc = s[(int)s.length() - i - 1];
		cc e = {fc, lc};
		if(tree[idx].ed.count(e) == 0)
			tree[idx].ed[e] = ++sz;
		idx = tree[idx].ed[e];
	}
	tree[idx].word++;
}

int dfs(int x) {
	int re = 0;
	for(auto i : tree[x].ed)
		re = max(re, dfs(i.se));
	if(tree[x].word)
		re += tree[x].word;
	return re;
}

int main() {
	fast_io();
	// freopen("inp.in", "r", stdin);
	
	cin >> n;
	for(int i = 1; i <= n; i++) {
		cin >> str[i];
		add(str[i]);
	}

	cout << dfs(1);
}
# 결과 실행 시간 메모리 Grader output
1 Correct 42 ms 43384 KB Output is correct
2 Incorrect 45 ms 43384 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 42 ms 43384 KB Output is correct
2 Correct 43 ms 43480 KB Output is correct
3 Incorrect 52 ms 47096 KB Output isn't correct
# 결과 실행 시간 메모리 Grader output
1 Correct 53 ms 44664 KB Output is correct
2 Incorrect 54 ms 44920 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 46 ms 44024 KB Output is correct
2 Correct 57 ms 45304 KB Output is correct
3 Incorrect 61 ms 45304 KB Output isn't correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 54 ms 44764 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 55 ms 44920 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 76 ms 45048 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 64 ms 44836 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 74 ms 43956 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 76 ms 44208 KB Output isn't correct
2 Halted 0 ms 0 KB -