# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
68408 | 2018-08-17T05:49:35 Z | KLPP | Selling RNA Strands (JOI16_selling_rna) | C++14 | 1500 ms | 25416 KB |
#include<iostream> #include<vector> #include<algorithm> #include<stdio.h> using namespace std; #define MOD 1000000009 #define BASE 257 typedef long long int lld; bool cmp(string a, string b){ for(int i=0;i<a.size() && i<b.size();i++){ if(a.at(i)<b.at(i))return true; if(a.at(i)>b.at(i))return false; } if(a.length()<=b.length())return true; return false; } bool cmp2(string a, string b){ for(int i=0;i<a.size() && i<b.size();i++){ if(a.at(i)<b.at(i))return true; if(a.at(i)>b.at(i))return false; } if(a.length()>b.length())return true; return false; } int main(){ int n,m; cin>>n>>m; string arr[n]; for(int i=0;i<n;i++){ cin>>arr[i]; } sort(arr,arr+n); vector<lld> hashes[n]; for(int i=0;i<n;i++){ lld v=1; lld h=0; for(int j=arr[i].size()-1;j>-1;j--){ h+=v*arr[i].at(j); h%=MOD; v*=BASE; v%=MOD; hashes[i].push_back(h); } } while(m--){ string p,q; cin>>p>>q; lld hashq=0; lld v=1; for(int i=q.size()-1;i>-1;i--){ hashq+=v*q.at(i); v*=BASE; v%=MOD; } int lo,hi; lo=-1; hi=n; int pos=0; while(hi-lo>1){ int mid=(hi+lo)/2; if(cmp(p,arr[mid]))hi=mid; else lo=mid; } int comeco=hi; lo=comeco-1; hi=n; while(hi-lo>1){ int mid=(hi+lo)/2; if(cmp2(p,arr[mid]))hi=mid; else lo=mid; } int fim=lo; int cnt=0; //cout<<comeco<<" "<<fim<<endl; //cout<<hashq<<endl; for(int i=comeco;i<=fim;i++){ if(hashes[i].size()>=q.length() && hashes[i][q.length()-1]==hashq){ cnt++; } }cout<<cnt<<endl; } return 0; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 3 ms | 248 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 274 ms | 22700 KB | Output is correct |
2 | Correct | 407 ms | 25416 KB | Output is correct |
3 | Incorrect | 277 ms | 25416 KB | Output isn't correct |
4 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1565 ms | 25416 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 3 ms | 248 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |