Codeforces Round #613 (Div. 2) A. Mezo Playing Zoma(逻辑)
题意:
给出一个移动序列,可以无效化一些指令,问可以移动到多少不同位置。
思路:
第一印象是统计左右指令数目,后来发现左右指令数目和即字符串长度。
#include <bits/stdc++.h> using namespace std; int main() { int n;cin>>n; cout<<n+1<<endl; return 0; }
给出一个移动序列,可以无效化一些指令,问可以移动到多少不同位置。
第一印象是统计左右指令数目,后来发现左右指令数目和即字符串长度。
#include <bits/stdc++.h> using namespace std; int main() { int n;cin>>n; cout<<n+1<<endl; return 0; }