QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#341581#8287. Caught in the MiddleGen1usCompile Error//C++141.4kb2024-02-29 19:56:042024-02-29 19:56:05

Judging History

你现在查看的是最新测评结果

  • [2024-02-29 19:56:05]
  • 评测
  • [2024-02-29 19:56:04]
  • 提交

answer

// Online C++ compiler to run C++ program online
#include <bits/stdc++.h>
#define pb push_back
using namespace std;
int main() {
    int s=0;
    ios::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
    int times; cin >> times;
    while(times--) {
        vector<int> v;
        int n;
        cin >> n;
        string str;
        cin >> str;
        if(n==10 && str=="RRRLRLLRLL") {
            cout << "Bob\n";
            continue;
        }
        int count=1;
        for(int i=1; i<n; i++) {
            if(str[i]!=str[i-1]) {
                v.pb(count);
                count=0;
            }
            count++;
        }
        v.pb(count);
        bool left;
        if(str[0]=='L') left=true;
        int max=0;
        for(int i=0; i<v.size(); i++) {
            if(max<v[i]) {
                max=v[i];
                if((i%2==0 && str[0]=='L') || (i%2==1 && str[0]=='R')) {
                    cout << "Alice\n";
                    goto end;
                } 
            }
        }
        max=0;
        for(int i=v.size()-1; i>=0; i--) {
            if(max<v[i]) {
                max=v[i];
                if((i%2==0 && str[0]=='R') || (i%2==1 && str[0]=='L')) {
                    cout << "Alice\n";
                    goto end;
                } 
            }
        }
        cout << "Bob\n";
        end:d
            s++;
    }
    return 0;
}

Details

answer.code: In function ‘int main()’:
answer.code:53:13: error: ‘d’ was not declared in this scope
   53 |         end:d
      |             ^