78122024-01-11 10:51:38szabelrSzínezéscpp17Wrong answer 0/50699ms5332 KiB
// Színezés.cpp : This file contains the 'main' function. Program execution begins and ends there.
//

#include <iostream>
#include <string>
using namespace std;
long long tomb[200001];
long long jok[200001];
int main()
{
    long long n, q,hol=1,db=0,dbmax,z,dbog=1,hany=2;
    string x;
    cin >> n >> q;
    cin >> x;
    for (int i = 1; i <= n; i++) {
        if (x[i-1] == '0') {
            tomb[i] = 0;
        }
        else
            tomb[i] = 1;
    }
    //0-ra
    while (hol <= n)
    {
        if (tomb[hol] == 1) {
            while (tomb[hol] == 1)
            {
                hol++;
            }
            db++;
        }
        if (tomb[hol] == 0) {
            hol++;
        }
    }
    dbmax = db;
    db = 0;
    hol = 1;
    //1re
    while (hol <= n)
    {
        if (tomb[hol] == 0) {
            while (tomb[hol] == 0)
            {
                hol++;
            }
            db++;
        }
        if (tomb[hol] == 1) {
            hol++;
        }
    }
    if (db > dbmax)
        dbmax = db;
    jok[1] = dbmax;

    for (int i = 1; i <= q; i++) {
        cin >> z;
        if (tomb[z] == 1)
            tomb[z] = 0;
        else
            tomb[z] = 1;
        db = 0;
        hol = 1;
        dbmax = 0;
        //0-ra
        while (hol <= n)
        {
            if (tomb[hol] == 1) {
                while (tomb[hol] == 1)
                {
                    hol++;
                }
                db++;
            }
            if (tomb[hol] == 0) {
                hol++;
            }
        }
        dbmax = db;
        db = 0;
        //1re
        hol = 1;
        while (hol <= n)
        {
            if (tomb[hol] == 0) {
                while (tomb[hol] == 0)
                {
                    hol++;
                }
                db++;
            }
            if (tomb[hol] == 1) {
                hol++;
            }
        }
        if (db > dbmax)
            dbmax = db;
        jok[hany] = dbmax;
        hany++;
    }
    for (int i = 1; i <= q + 1; i++) {
        cout << jok[i]<<endl;
    }
}

// Run program: Ctrl + F5 or Debug > Start Without Debugging menu
// Debug program: F5 or Debug > Start Debugging menu

// Tips for Getting Started: 
//   1. Use the Solution Explorer window to add/manage files
//   2. Use the Team Explorer window to connect to source control
//   3. Use the Output window to see build output and other messages
//   4. Use the Error List window to view errors
//   5. Go to Project > Add New Item to create new code files, or Project > Add Existing Item to add existing code files to the project
//   6. In the future, to open this project again, go to File > Open > Project and select the .sln file
SubtaskSumTestVerdictTimeMemory
base0/50
1Wrong answer0/03ms1692 KiB
2Wrong answer0/0209ms2160 KiB
3Wrong answer0/23ms1952 KiB
4Wrong answer0/24ms2080 KiB
5Wrong answer0/34ms2288 KiB
6Wrong answer0/34ms2648 KiB
7Wrong answer0/3105ms2648 KiB
8Wrong answer0/328ms2880 KiB
9Wrong answer0/28ms2836 KiB
10Wrong answer0/212ms3012 KiB
11Time limit exceeded0/3699ms4344 KiB
12Time limit exceeded0/3699ms4224 KiB
13Time limit exceeded0/3684ms4500 KiB
14Time limit exceeded0/3658ms4736 KiB
15Time limit exceeded0/3665ms4572 KiB
16Time limit exceeded0/3683ms4744 KiB
17Time limit exceeded0/3663ms5044 KiB
18Time limit exceeded0/3660ms5068 KiB
19Time limit exceeded0/3658ms5056 KiB
20Time limit exceeded0/3658ms5332 KiB