답안 #71166

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
71166 2018-08-24T07:36:30 Z vanogam 구간 성분 (KOI15_interval) C++14
0 / 100
19 ms 692 KB
#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

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++){
                 ~^~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 376 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 4 ms 484 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 17 ms 692 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 19 ms 692 KB Output isn't correct
2 Halted 0 ms 0 KB -