Accepted
Code
#include <bits/stdc++.h>
#pragma GCC optimize("Ofast")
using namespace std;
void solve(int cs) {
string a, b;
cin >> a >> b;
int n = a.size(), m = b.size();
for (int i = 0, j = 0; i < n; i++) {
if (a[i] == b[j]) {
j += 1;
if (j == m) {
cout << "YES\n";
return;
}
}
}
cout << "NO\n";
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int tc = 1;
cin >> tc;
for (int cs = 1; cs <= tc; cs++) {
solve(cs);
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1020 Favourite footballer
- Language
- C++20 (G++ 13.2.0)
- Submit At
- 2024-07-10 18:36:14
- Judged At
- 2024-11-11 03:28:01
- Judged By
- Score
- 100
- Total Time
- 2ms
- Peak Memory
- 576.0 KiB