/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 532.0 KiB
#2 Wrong Answer 26ms 532.0 KiB
#3 Wrong Answer 7ms 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;

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

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

        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 14:01:40
Judged At
2024-11-06 14:01:40
Judged By
Score
5
Total Time
26ms
Peak Memory
532.0 KiB