# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
765705 | boyliguanhan | Lampice (COCI19_lampice) | C++17 | 5045 ms | 524288 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
string S;
int ans = 0;
vector<int> adj[50100];
void dfs(int x, string str, int p) {
str+=S[x-1];
for(auto i: adj[x]) {
if(i!=p)
dfs(i,str,x);
}
if(ans < str.size()) {
string str2 = str;
reverse(str2.begin(), str2.end());
if(str==str2) ans = max(ans, (int)str.size());
}
}
int main() {
int n;
cin >> n >> S;
for(int i = 1; i < n; i++) {
int a, b;
cin >> a >> b;
adj[a].push_back(b);
adj[b].push_back(a);
}
for(int i = 1; i <= n; i++) {
dfs(i,"",0);
}
cout << ans << '\n';
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |