在这道题中解题思路为统计输入字符串L和R的次数,定义一个变量遇到L减一,遇到R加一。把所有的方向存成一个数组,对所求得到的res初4取余。
在这道题中关键是理解负数和正数取余操作,对于负数C++可以直接进行求余,符号和被除数保持相同。

#include<iostream>
#include<math.h>
using namespace std;

int main(){
    int count;
    cin >> count;
    string str;
    cin >> str;
    int res = 0;
    char direct[4] = {'N','E','S','W'};
    for(int i = 0;i<count;i++){
        if(str[i] == 'L') res--;
        else if(str[i] == 'R') res++;
    }

    res = res % 4;
    if(res < 0){
        cout<<direct[4 + res]<<endl;
    }else{
        cout << direct[res] << endl;
    }
    return 0;
}