이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#define fast ios_base::sync_with_stdio(0),cin.tie(0),cout.tie(0)
#define It it=se.begin();it!=se.end();it++
#define mem(dp,i) memset(dp,i,sizeof(dp))
#define all(x) begin(x),end(x)
#define unmap unordered_map
#define pii pair<int,int>
#include <bits/stdc++.h>
#define pll pair<ll,ll>
#define vll vector<ll>
#define vi vector<int>
#define ld long double
#define ll long long
#define pb push_back
#define sh short int
#define mid (l+r)/2
#define S second
#define F first
#define sqr 447
using namespace std;
const int inf = 1e9+9;
const int mod = 1e9+7;
const ld pai=acos(-1);
int n,m;
unordered_map < string , bool > pre[5009];
unordered_map < string , bool > suf[5009];
int main(){
fast,cin>>n>>m;
for(int i=0;i<n;i++){
string s; cin>>s;
int sz = s.size();
string s1 = "";
for(int j=0;j<sz;j++){
s1 += s[j];
pre[i][s1] = 1;
}
string s2 = "";
for(int j=sz-1;j>=0;j--){
s2 += s[j];
suf[i][s2] = 1;
}
}
for(int i=0;i<m;i++){
int ans = 0;
string s1,s2;
cin>>s1>>s2;
reverse(all(s2));
for(int j=0;j<n;j++){
ans += (pre[j][s1] && suf[j][s2]);
}
cout<<ans<<endl;
}
}
# | 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... |