# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
71073 | KLPP | Selling RNA Strands (JOI16_selling_rna) | C++14 | 1559 ms | 44644 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<iostream>
#include<vector>
#include<algorithm>
#include<stdio.h>
using namespace std;
#define MOD 1000000007
#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++){//inv hashing
cout<<arr[i]<<endl;
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);
}
}vector<lld> hashes2[n];
for(int i=0;i<n;i++){
lld v=1;
lld h=0;
for(int j=0;j<arr[i].size();j++){
h+=v*arr[i].at(j);
h%=MOD;
v*=BASE;
v%=MOD;
hashes2[i].push_back(h);
//cout<<h<<" "<<v<<" ";
}//cout<<endl;
}
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);
hashq%=MOD;
v*=BASE;
v%=MOD;
}
lld hashp=0;
v=1;
for(int i=0;i<p.size();i++){
hashp+=v*p.at(i);
hashp%=MOD;
v*=BASE;
v%=MOD;
}
int lo=-1;
int hi=n;
while(hi-lo>1){
int mid=(lo+hi)/2;
bool b=true;
for(int i=0;i<p.size() && b;i++){
if(arr[mid].size()<p.size() || arr[mid].at(i)<p.at(i))b=false;
}//cout<<mid<<" "<<b<<endl;
if(b)hi=mid;
else lo=mid;
}
//cout<<lo<<" "<<hi<<" "<<p<<endl;
int start=hi;
lo=-1;
hi=n;
while(hi-lo>1){
int mid=(lo+hi)/2;
bool b=true;
for(int i=0;i<p.size() && b;i++){
if(arr[mid].size()<p.size() || arr[mid].at(i)<=p.at(i))b=false;
}//cout<<mid<<" "<<b<<endl;
if(b)hi=mid;
else lo=mid;
}
//cout<<lo<<" "<<hi<<endl;
int end=lo;
int cnt=0;
//cout<<hashp<<endl;
for(int i=start;i<=end;i++){
if(hashes2[i].size()>=p.length() && hashes[i].size()>=q.length()){
if(hashes2[i][p.length()-1]==hashp && hashes[i][q.length()-1]==hashq){
cnt++;//cout<<i<<" ";
}
}
}cout<<cnt<<endl;
//cout<<endl;
}
return 0;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |