0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 04:05:24 +00:00
OI-codes/Codeforces/1607/A/A.cpp
2022-04-01 18:33:24 +08:00

24 lines
426 B
C++

#include <bits/stdc++.h>
using namespace std;
int t, ans;
string kbd, s;
map<char, int> key;
int main() {
cin >> t;
while (t--) {
ans = 0;
cin >> kbd >> s;
for (int i = 0; i < kbd.size(); i++) {
key[kbd[i]] = i;
}
for (int i = 1; i < s.size(); i++) {
ans += abs(key[s[i]] - key[s[i - 1]]);
}
cout << ans << endl;
}
return 0;
}