Submission #994070

# Submission time Handle Problem Language Result Execution time Memory
994070 2024-06-07T05:42:06 Z vjudge1 Rima (COCI17_rima) C++17
0 / 140
1000 ms 78664 KB
#include <bits/stdc++.h>

using namespace std;

#define int long long

const int h = 727, mod = 1e9 + 7;
const int M = 3e6;

int pw[M];

signed main()
{
	ios::sync_with_stdio(0);
	cin.tie(NULL),cout.tie(NULL);
	
	pw[0]=1;
	for (int i=1;i<M;i++)
		pw[i]=pw[i-1]*h%mod;
	int n;
	cin>>n;
	map<int,vector<string>> mp;
	for (int i=0;i<n;i++)
	{
		string s;
		cin>>s;
		mp[s.size()].push_back(s);
	}
	vector<string> v;
	for (auto i:mp)
		for (auto j:i.second)
			v.push_back(j);
	reverse(v.begin(),v.end());
	map<int,int> ans;
	while (!v.empty())
	{
		string s=v.back();
		v.pop_back();
		int hs=0,m=s.size();
		for (int i=1;i<m;i++)
			hs=hs*h+s[i],hs%=mod;
		int mx;
		if (ans.find(hs)!=ans.end())
			mx=ans[hs]+1;
		else
			mx=1;
		vector<int> wht;
		int p;
		for (int c='a';c<='z';c++)
		{
			p=hs;
			p+=pw[m-1]*c%mod;
			if (ans.find(p)!=ans.end())
				mx=max(mx,ans[p]+1),wht.push_back(p);
			else if(c==s[0])
				wht.push_back(p);
				
		}
		for (int i:wht)
			ans[i]=mx;
	}
	int res=0;
	for (auto i:ans)
		res=max(res,i.second);
	cout<<res<<endl;
	
	return 0;
}
# Verdict Execution time Memory Grader output
1 Incorrect 21 ms 23888 KB Output isn't correct
2 Incorrect 20 ms 23896 KB Output isn't correct
3 Incorrect 21 ms 23892 KB Output isn't correct
4 Execution timed out 1049 ms 78664 KB Time limit exceeded
5 Incorrect 48 ms 30044 KB Output isn't correct
6 Incorrect 31 ms 26056 KB Output isn't correct
7 Incorrect 27 ms 25684 KB Output isn't correct
8 Incorrect 25 ms 25480 KB Output isn't correct
9 Incorrect 79 ms 31888 KB Output isn't correct
10 Incorrect 28 ms 25396 KB Output isn't correct