/ 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 6ms 532.0 KiB

Code

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;

int main() {
    int T;
    cin >> T;
    
    while (T--) {
        int N;
        string S;
        cin >> N >> S;
        
        // Count the number of consecutive '1's blocks
        vector<int> onesBlocks;
        int count = 0;

        for (int i = 0; i < N; ++i) {
            if (S[i] == '1') {
                count++;
            } else {
                if (count > 0) {
                    onesBlocks.push_back(count);
                }
                count = 0;
            }
        }

        if (count > 0) {
            onesBlocks.push_back(count); // If the string ends with 1's
        }

        // If no blocks of 1's are found, answer is 0
        if (onesBlocks.empty()) {
            cout << 0 << endl;
        } else {
            // The longest block of consecutive 1's will be the result
            int maxConsecutiveOnes = *max_element(onesBlocks.begin(), onesBlocks.end());
            cout << maxConsecutiveOnes << 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:56:37
Judged At
2024-11-06 14:56:37
Judged By
Score
5
Total Time
26ms
Peak Memory
532.0 KiB