34552023-02-28 10:02:51CWMTáblajátékcpp17Hibás válasz 30/503ms3788 KiB
// nemesGyak000.cpp : This file contains the 'main' function. Program execution begins and ends there.
//

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

int main()
{
    vector<int> nbitnum;
    int n;
    cin >> n;
    int level = 0;
    for (size_t i = 0; i < n; i++)
    {
        int ins;
        cin >> ins;
        if (ins == 0) {
            nbitnum.push_back(0);
            level++;
        }
        else if (ins == 1) {
            nbitnum.push_back(1);
            level++;
        }
        else if (ins == 2) {
            nbitnum.pop_back();
            level--;
        }
        else if (ins == 3) {
            for (size_t i = 0; i < nbitnum.size(); i++)
            {
                if (nbitnum[i] == 0) nbitnum[i] = 1;
                else nbitnum[i] = 0;
            }
        }
        else if (ins == 4) {
            for (size_t i = 0; i < nbitnum.size(); i++)
            {
                if (nbitnum[i] == 1) nbitnum[i] = 0;
                else nbitnum[i] = 1;
            }
        }
    }
    string res = "";
    bool hadOne = false;
    for (size_t i = 0; i < nbitnum.size(); i++)
    {
        if (nbitnum[i] == 0 && hadOne) {
            res += '0';
        }
        else if (nbitnum[i] == 1) {
            hadOne = true;
            res += '1';
        }
    }
    if (res == "") res = "0";
    cout << level << "\n" << res << "\n";
}

// 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
RészfeladatÖsszpontTesztVerdiktIdőMemória
base30/50
1Elfogadva0/03ms1812 KiB
2Hibás válasz0/03ms2004 KiB
3Elfogadva3/33ms2248 KiB
4Elfogadva3/33ms2432 KiB
5Elfogadva3/33ms2636 KiB
6Elfogadva3/33ms2888 KiB
7Elfogadva3/33ms3060 KiB
8Elfogadva3/33ms3148 KiB
9Részben helyes1/33ms3272 KiB
10Részben helyes1/33ms3528 KiB
11Részben helyes1/33ms3636 KiB
12Részben helyes1/33ms3576 KiB
13Részben helyes1/43ms3568 KiB
14Részben helyes1/43ms3568 KiB
15Részben helyes1/43ms3700 KiB
16Részben helyes1/43ms3788 KiB
17Elfogadva4/43ms3788 KiB