/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 2ms 532.0 KiB
#2 Accepted 1ms 532.0 KiB
#3 Accepted 2ms 580.0 KiB
#4 Accepted 2ms 580.0 KiB
#5 Wrong Answer 4ms 580.0 KiB
#6 Wrong Answer 4ms 580.0 KiB
#7 Accepted 255ms 1.059 MiB
#8 Accepted 254ms 1012.0 KiB
#9 Accepted 246ms 872.0 KiB
#10 Accepted 249ms 992.0 KiB
#11 Accepted 1ms 584.0 KiB
#12 Accepted 2ms 484.0 KiB
#13 Accepted 1ms 576.0 KiB
#14 Accepted 14ms 772.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;

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, vector<bool> &vis)
{
    if(ans < s.size() && isPalindrome(s)) ans = max(ans, int(s.size()));
    int c = 0;
    vis[vertex] = 1;
    for(auto &child: g[vertex])
    {
        if(vis[child]) continue;
        ++c;
        s.pb(s1[child]);
        dfs(child, vertex, s, vis);
        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);
        g[v].pb(u);
    }
    s1 = '#' + s1;
    cin >> q;
    string s;
    while(q--)
    {
        int i; char ch;
        cin >> i >> ch;
        if(s1[i] != ch)
        {
            // cout << i << " ---- " << ch << endl;
            ans = 1;
            s1[i] = ch;
            s += s1[1];
            vector<bool> vis(n + 1, 0);
            dfs(1, 0, s, vis);
            s.clear();
        }
        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
Contest
TLE_Headquarters - round #1
Language
C++17 (G++ 13.2.0)
Submit At
2024-03-27 18:29:28
Judged At
2024-10-03 13:55:04
Judged By
Score
85
Total Time
255ms
Peak Memory
1.059 MiB