1 条题解
-
1
//Author:chuziming #include<bits/stdc++.h> using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(0); int len; cin>>len; string s; cin>>s; for(int i=0;i<len;i++) { bool flag=true; map<string,int>a; for(int j=0;j<len-i;j++) { string sub=s.substr(j,i+1); if(a[sub]==0)a[sub]=1; else if(a[sub]==1){flag=false;break;} } if(flag){cout<<i+1<<'\n';break;} } return 0; }
- 1
信息
- ID
- 2275
- 时间
- 1000ms
- 内存
- 125MiB
- 难度
- 9
- 标签
- 递交数
- 7
- 已通过
- 7
- 上传者