QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#322791#8224. Caught in the Middlejames1BadCreeper0 0ms3608kbC++14810b2024-02-07 18:43:092024-02-07 18:43:09

Judging History

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

  • [2024-02-07 18:43:09]
  • 评测
  • 测评结果:0
  • 用时:0ms
  • 内存:3608kb
  • [2024-02-07 18:43:09]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
const int N = 1e6 + 5; 

int n; 
char a[N]; 

void solve(void) {
    cin >> n >> a + 1; 
    int m = 0; 
    for (int i = 1; i <= n; ++i)
        if (m <= 1 || (a[i] != a[m - 1] || a[i] != a[m])) a[++m] = a[i]; 
    n = m; 
    // a[1] == L or a[n] == R
    for (int i = 1; i <= n; ++i) cout << a[i]; cout << '\n'; 
    int l = 1, r = n, now = 0; 
    while (1) {
        if (l == r || a[l] == 'L' || a[r] == 'R') {
            cout << (now ? "Bob\n" : "Alice\n"); 
            break; 
        }
        if (a[l + 1] == 'R') ++l; 
        else if (a[r - 1] == 'L') --r; 
        else ++l; 
        now ^= 1; 
    }
}

int main(void) {
    ios::sync_with_stdio(0); 
    int T = 1; cin >> T; 
    while (T--) solve();
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Subtask #1:

score: 0
Wrong Answer

Test #1:

score: 0
Wrong Answer
time: 0ms
memory: 3608kb

input:

20
10
RLRRRRLLRR
10
LRLLLLRRLR
6
RLRLRL
10
LLRLRRRRLR
6
LRRLLL
3
RLR
5
LLRRR
6
RRRRRL
9
LRRRLRRLR
1
R
10
RRRLLRRLLL
6
LRLLLR
9
LLRLRLRLR
7
RRRRLRR
2
LL
10
RRRLLRRLRR
2
RL
7
RRLRRLR
3
LLR
10
LLRLRRRLLR

output:

RLRRLLRR
Alice
LRLLRRLR
Alice
RLRLRL
Bob
LLRLRRLR
Alice
LRRLL
Alice
RLR
Alice
LLRR
Alice
RRL
Alice
LRRLRRLR
Alice
R
Alice
RRLLRRLL
Bob
LRLLR
Alice
LLRLRLRLR
Alice
RRLRR
Alice
LL
Alice
RRLLRRLRR
Alice
RL
Bob
RRLRRLR
Alice
LLR
Alice
LLRLRRLLR
Alice

result:

wrong answer 1st lines differ - expected: 'Alice', found: 'RLRRLLRR'

Subtask #2:

score: 0
Skipped

Dependency #1:

0%

Subtask #3:

score: 0
Skipped

Dependency #1:

0%

Subtask #4:

score: 0
Skipped

Dependency #1:

0%