CodeFoeces-712B

题目

原题链接:B. Memory and Trident

题意

给出一个操作字串,问需要改正几步能使其回到原点。

代码

#include
using namespace std;
int main() {
    string s;
    int x=0,y=0;
    cin>>s;
    if(s.size()%2!=0) {
        printf("-1\n");
        return 0;
    }
    for(int i=0;i

你可能感兴趣的:(CodeFoeces-712B)