Submission #71166

#TimeUsernameProblemLanguageResultExecution timeMemory
71166vanogam구간 성분 (KOI15_interval)C++14
0 / 100
19 ms692 KiB
#include<bits/stdc++.h> using namespace std; long long s,d[30],f,g,h,j,k,n,m,mod=1000000000000009,mar=1507; int i,a,l; string x,z; unordered_set<long long> q[2002]; main(){ //ios::sync_with_stdio(0); d[0]=1; for(i=1;i<30;i++){ d[i]=(d[i-1]*mar)%mod; } char c; while(c=getchar()!='\n') x+=c; while(c=getchar()!='\n') z+=c; //cout<<"*"<<x<<" "<<z<<"*"; for(i=0;i<x.size();i++){ h=0; for(a=i;a<x.size();a++){ h+=d[x[a]-'a']; if(h>mod) h-=mod; q[a-i].insert(h); } } for(i=0;i<z.size();i++){ h=0; for(a=i;a<z.size();a++){ h+=d[z[a]-'a']; if(h>mod) h-=mod; if(l<a-i+1 && q[a-i].find(h)!=q[a-i].end()) l=a-i+1; } } cout<<l; }

Compilation message (stderr)

interval.cpp:7:6: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
 main(){
      ^
interval.cpp: In function 'int main()':
interval.cpp:14:12: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
     while(c=getchar()!='\n') x+=c;
           ~^~~~~~~~~~~~~~~~
interval.cpp:15:12: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
     while(c=getchar()!='\n') z+=c;
           ~^~~~~~~~~~~~~~~~
interval.cpp:17:14: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
     for(i=0;i<x.size();i++){
             ~^~~~~~~~~
interval.cpp:19:18: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
         for(a=i;a<x.size();a++){
                 ~^~~~~~~~~
interval.cpp:25:14: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
     for(i=0;i<z.size();i++){
             ~^~~~~~~~~
interval.cpp:27:18: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
         for(a=i;a<z.size();a++){
                 ~^~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...