답안 #564086

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
564086 2022-05-18T14:23:52 Z perchuts Savez (COCI15_savez) C++17
0 / 120
1000 ms 51220 KB
#include <bits/stdc++.h>
#define all(x) x.begin(), x.end()
#define sz(x) (int) x.size()
#define endl '\n'
#define pb push_back
#define _ ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);

using namespace std;

using ll = long long;
using ull = unsigned long long;
using ii = pair<int,int>;
using iii = tuple<int,int,int>;

const int inf = 2e9+1;
const ll mod = 1e9+7;
const ll base = 101;

template<typename X, typename Y> bool ckmin(X& x, const Y& y) { return (y < x) ? (x=y,1):0; }
template<typename X, typename Y> bool ckmax(X& x, const Y& y) { return (x < y) ? (x=y,1):0; }

bool cmp(pair<int,string>a,pair<int,string>b){
    if(a.first==b.first)return 1;
    return a.first>b.first;
}

vector<vector<ll>>hsh, revHsh;
vector<pair<int,string>>v;

ll mul[2000001];

void computeHash(int idx){
    int n = v[idx].first;
    hsh[idx].pb(ll(v[idx].second[0]-'A'));
    for(int i=1;i<n;++i){
        ll add = hsh[idx].back()*base+ll(v[idx].second[i]-'A');
        hsh[idx].pb(add);
        hsh[idx].back() %= mod;
    }
    revHsh[idx].pb(ll(v[idx].second[n-1]-'A'));
    for(int i=n-2;i>=0;--i){
        ll add = revHsh[idx].back()+mul[n-1-i]*ll(v[idx].second[i]-'A');
        revHsh[idx].pb(add);
        revHsh[idx].back() %= mod;
    }
}

unordered_map<int,int>dp;

int main(){_
    int n;cin>>n;
    v.resize(n);
    for(int i=0;i<n;++i){
        cin>>v[i].second;
        v[i].first = sz(v[i].second);
    }

    mul[0] = 1ll;
    for(int i=1;i<=2e6;++i)mul[i] = (mul[i-1]*base)%mod;

    sort(all(v), cmp);
    hsh.resize(n), revHsh.resize(n);
    int best = 0;

    // for(int i=0;i<n;++i){
    //     computeHash(i);
    //     int m = v[i].first;
    //     int me = int(hsh[i][m-1]);
    //     int res = dp[me]+1;
    //     for(int j=0;j<m;++j)
    //         if(hsh[i][j]==revHsh[i][j])ckmax(dp[int(hsh[i][j])], res); 
    //     ckmax(best, res);
    // }
    cout<<best<<endl;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 19 ms 15860 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 21 ms 15992 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 42 ms 34476 KB Execution killed with signal 6
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 20 ms 16084 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 81 ms 17740 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 362 ms 18896 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1090 ms 18892 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1101 ms 19852 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 453 ms 51220 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1070 ms 31564 KB Time limit exceeded
2 Halted 0 ms 0 KB -