mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-05 12:38:47 +00:00
24 lines
426 B
C++
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;
|
||
|
}
|