#28564:


11030067@mail.hpsh.tp.edu.tw (和平110級鄧雨珊)

學校 : 臺北市立和平高級中學
編號 : 163096
來源 : [61.64.210.174]
最後登入時間 :
2022-10-23 16:54:59
e567. 12503 - Robot Instructions -- UVA | From: [203.72.60.237] | 發表日期 : 2021-12-17 14:31

#include <iostream>
#include <sstream>
using namespace std;

int main(){
int t, n;
cin >> t;
while (t--){
cin >> n;
string s;
int a[101], p=0;
getline(cin, s);
for (int i=1; i<=n; i++){
getline(cin, s);
if (s=="LEFT"){
a[i]=-1;
}
else if (s=="RIGHT"){
a[i]=1;
}
else {
int idx;
stringstream ss(s);
string s1, s2;
ss >> s1 >> s2 >> idx;
a[i]=a[idx];
}
p+=a[i];
}
cout << p <<endl;
}
}
 
ZeroJudge Forum