/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Wrong Answer 1ms 532.0 KiB
#2 Wrong Answer 24ms 532.0 KiB

Code

#include <bits/stdc++.h>
using namespace std;

int main() {
    int t;
    cin >> t;
    while (t--) {
        int n;
        cin >> n;
        string s;
        cin >> s;

        int maxConsecutive = 0;
        int currentConsecutive = 0;

        // Roy's move
        for (int i = 0; i < n; i++) {
            if (s[i] == '0') {
                s[i] = '1';
                maxConsecutive = max(maxConsecutive, ++currentConsecutive);
            } else {
                currentConsecutive = 0;
            }
        }

        // Emon's move
        for (int i = 0; i < n; i++) {
            if (s[i] == '1') {
                s[i] = '0';
                maxConsecutive = max(maxConsecutive, ++currentConsecutive);
            } else {
                currentConsecutive = 0;
            }
        }

        cout << maxConsecutive << endl;
    }
    return 0;
}

Information

Submit By
Type
Submission
Problem
P1113 Fliping Game
Language
C++17 (G++ 13.2.0)
Submit At
2024-11-06 13:55:54
Judged At
2024-11-06 13:55:54
Judged By
Score
0
Total Time
24ms
Peak Memory
532.0 KiB