/ SeriousOJ /

Record Detail

Accepted


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 576.0 KiB
#2 Accepted 1ms 652.0 KiB
#3 Accepted 1ms 364.0 KiB
#4 Accepted 1ms 532.0 KiB
#5 Accepted 3ms 496.0 KiB
#6 Accepted 3ms 532.0 KiB
#7 Accepted 188ms 1.0 MiB
#8 Accepted 192ms 1.039 MiB
#9 Accepted 186ms 1.047 MiB
#10 Accepted 188ms 1.051 MiB
#11 Accepted 1ms 576.0 KiB
#12 Accepted 1ms 580.0 KiB
#13 Accepted 1ms 576.0 KiB
#14 Accepted 14ms 788.0 KiB

Code

#include<bits/stdc++.h>
typedef long long   ll;
#define endl        '\n'
#define F           first
#define S           second
#define pb          push_back
#define yes         cout<<"YES\n"
#define no          cout<<"NO\n"
#define all(x)      x.begin(),x.end()
#define allr(x)     x.rbegin(),x.rend()
#define error1(x)   cerr<<#x<<" = "<<(x)<<endl
#define error2(a,b) cerr<<"("<<#a<<", "<<#b<<") = ("<<(a)<<", "<<(b)<<")\n";
#define coutall(v)  for(auto &it: v) cout<<it<<" "; cout<<endl;
#define _ASRafi__   ios::sync_with_stdio(false); cin.tie(0);
using namespace std;

const int N = 1e3 + 7;
vector<int> g[N];
string s1;
int ans = 0;

bool isPalindrome(string &s)
{
    for (int i = 0; i < int(s.size()) >> 1; i++)
    {
        if (s[i] != s[int(s.size()) - i - 1])
        {
            return 0;
        }
    }
    return 1;
}

void dfs(int vertex, int par, string &s)
{
    if(ans < s.size() && isPalindrome(s)) ans = max(ans, int(s.size()));
    for(auto &child: g[vertex])
    {
        if(child == par) continue;
        s.pb(s1[child]);
        dfs(child, vertex, s);
        s.pop_back();
    }
    return;
}

void solve()
{
    int n, q;
    cin >> n >> s1;
    for (int i = 0; i + 1 < n; i++)
    {
        int u, v; cin >> u >> v;
        g[u].pb(v);
    }
    s1 = '#' + s1;
    cin >> q;
    string s;
    for(int qq = 0; qq < q; qq++)
    {
        int i; char ch;
        cin >> i >> ch;
        if(qq == 0 or s1[i] != ch)
        {
            // cout << i << " ---- " << ch << endl;
            ans = 0;
            s1[i] = ch;
            s += s1[1];
            dfs(1, 0, s);
            s.pop_back();
        }
        cout << ans << endl;
    }
    return;
}

int32_t main()
{
    _ASRafi__;
    int tc = 1;
    // cin >> tc;
    for (int t = 1; t <= tc; t++)
    {
        // cout << "Case " << t << ": ";
        solve();
    }
    return 0;
}

Information

Submit By
Type
Submission
Problem
P1045 Largest palindrome in tree
Language
C++17 (G++ 13.2.0)
Submit At
2024-03-28 08:29:42
Judged At
2024-10-03 13:54:54
Judged By
Score
100
Total Time
192ms
Peak Memory
1.051 MiB