Submission #223451

# Submission time Handle Problem Language Result Execution time Memory
223451 2020-04-15T09:27:17 Z dwsc Lampice (COCI19_lampice) C++14
0 / 110
5000 ms 524292 KB
#include <bits/stdc++.h>
using namespace std;
typedef pair<int,int> ii;
string act;
vector<int> adj[50010];
map<string,int> bigmap,smallmap;
map<string,int> m1,m2;
void dfs(int u,int pa,string s){
    smallmap[s]++;
    //cout << s << "hi\n";
    //cout << s << "hi\n";
    for (int v: adj[u]){
        if (v == pa) continue;
        dfs(v,u,s+act[v]);
    }
}
void dfs1(int u,int pa,string s){
    m1[s]++;
    //cout << s << "hi\n";
    //cout << s << "hi\n";
    for (int v: adj[u]){
        if (v == pa) continue;
        dfs1(v,u,s+act[v]);
    }
}
void dfs2(int u,int pa,string s){
    m2[s]++;
    //cout << s << "hi\n";
    //cout << s << "hi\n";
    for (int v: adj[u]){
        if (v == pa) continue;
        dfs2(v,u,s+act[v]);
    }
}
int main(){
    int n;
    cin >> n;
    cin >> act;
    //cout << act << "read\n";
    ii edge[n-1];
    for (int i = 0; i < n-1; i++){
        int a,b;
        cin >> a >> b;
        a--;
        b--;
        adj[a].push_back(b);
        adj[b].push_back(a);
        edge[i] = ii(a,b);
    }

    int ans = 0;
    for (int i = 0; i < n; i++){
        bigmap.clear();
        for (int j = 0; j < adj[i].size(); j++) {
            smallmap.clear();
            string s = "";
            s += act[adj[i][j]];
            dfs(adj[i][j],i,s);
            for (auto it = smallmap.begin(); it != smallmap.end(); ++it){
                if (bigmap[it->first])  ans = max(ans,2*(int)((it->first).length())+1);
                else bigmap[it->first]++;
            }
        }
       // cout << "hi\n";
    }
    for (int i = 0; i < n-1; i++){
        int a = edge[i].first,b = edge[i].second;
        string s1 = "",s2 = "";
        s1 += act[a],s2+= act[b];
        m1.clear();
        m2.clear();
        dfs1(a,b,s1);
        dfs2(b,a,s2);
        for (auto it = m1.begin(); it != m1.end(); ++it){
           //cout<< it->first << " " << it->second << "\n";
            if (m2[it->first]) ans = max(ans,2*(int)((it->first).length()));
        }
    }
    cout << ans;
}

Compilation message

lampice.cpp: In function 'int main()':
lampice.cpp:54:27: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
         for (int j = 0; j < adj[i].size(); j++) {
                         ~~^~~~~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Correct 98 ms 1536 KB Output is correct
2 Correct 603 ms 1784 KB Output is correct
3 Execution timed out 5057 ms 2656 KB Time limit exceeded
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 528 ms 524292 KB Execution killed with signal 9 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1040 ms 524292 KB Execution killed with signal 9 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 98 ms 1536 KB Output is correct
2 Correct 603 ms 1784 KB Output is correct
3 Execution timed out 5057 ms 2656 KB Time limit exceeded
4 Halted 0 ms 0 KB -