27902023-01-25 07:25:26CWMVideójátékcpp11Wrong answer 10/100186ms9468 KiB
// Videogame.cpp : This file contains the 'main' function. Program execution begins and ends there.
//

#include <iostream>
#include <vector>
using namespace std;
//#define int long long
int T;
int lastPlayedGlobal;
struct interval {
    int beginning;
    int end;
};
char intersectionType(interval Me, interval Hano) {
    if (Me.beginning <= Hano.beginning && Me.end >= Hano.beginning) return 'M'; //Intersection when I start playing first
    if (Me.beginning >= Hano.beginning && Hano.end >= Me.beginning) return 'H'; //Intersection when Hano starts playing first
    return 'N'; //No intersection
}
int calcPlayTime(interval Me, interval Hano) {
    char iType = intersectionType(Me, Hano);
    if (iType == 'N') return 0;
    if (iType == 'H') return min(Hano.end, Me.end) - Me.beginning + 1;
    if (iType == 'M') {
        if (lastPlayedGlobal + T >= Hano.beginning && lastPlayedGlobal!=Me.end) {
            return min(Hano.end, Me.end) - Hano.beginning + 1;
        }
        else {
            lastPlayedGlobal = Me.end;
            return 0;
        }
    }
}
signed main()
{
    cin >> T;
    int meIntervalCount, hanoIntervalCount;
    cin >> meIntervalCount;
    vector<interval> meIntervals;
    vector<interval> hanoIntervals;
    for (size_t i = 0; i < meIntervalCount; i++)
    {
        int a, b;
        cin >> a >> b;
        meIntervals.push_back({ a,b });
    }
    cin >> hanoIntervalCount;
    for (size_t i = 0; i < hanoIntervalCount; i++)
    {
        int a, b;
        cin >> a >> b;
        hanoIntervals.push_back({ a,b });
    }
    int hanoIntervalIndex = 0;
    int meIntervalIndex = 0;
    lastPlayedGlobal = meIntervals[0].beginning;
    int MaxPlayTime = 0;
    while (true) {
        MaxPlayTime+=calcPlayTime(meIntervals[meIntervalIndex], hanoIntervals[hanoIntervalIndex]);
        if (meIntervals[meIntervalIndex].end >= hanoIntervals[hanoIntervalIndex].end) {
            if(lastPlayedGlobal<hanoIntervals[hanoIntervalIndex].end)lastPlayedGlobal = hanoIntervals[hanoIntervalIndex].end;
            hanoIntervalIndex++;
            if (hanoIntervalIndex == hanoIntervalCount) {
                cout << MaxPlayTime << "\n";
                return 0;
            }
        }
        else {
            meIntervalIndex++;
            if (meIntervalIndex == meIntervalCount) {
                cout << MaxPlayTime << "\n";
                return 0;
            }
            else lastPlayedGlobal = meIntervals[meIntervalIndex].beginning;
        }
    }
}

// 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
subtask10/0
1Accepted3ms1812 KiB
2Accepted2ms2000 KiB
subtask210/10
3Accepted2ms2252 KiB
4Accepted2ms2332 KiB
5Accepted2ms2356 KiB
6Accepted2ms2572 KiB
7Accepted2ms2756 KiB
8Accepted2ms2836 KiB
9Accepted2ms3036 KiB
10Accepted2ms3240 KiB
11Accepted2ms3448 KiB
subtask30/20
12Accepted2ms3684 KiB
13Accepted2ms3892 KiB
14Accepted2ms3964 KiB
15Accepted2ms3852 KiB
16Accepted2ms4064 KiB
17Accepted3ms4188 KiB
18Accepted3ms4272 KiB
19Accepted4ms4364 KiB
20Wrong answer3ms4472 KiB
21Wrong answer3ms4548 KiB
22Wrong answer3ms4764 KiB
subtask40/30
23Accepted14ms5160 KiB
24Accepted48ms6176 KiB
25Accepted123ms8988 KiB
26Accepted136ms9208 KiB
27Accepted137ms9112 KiB
28Accepted57ms6592 KiB
29Wrong answer10ms4872 KiB
30Wrong answer10ms4952 KiB
31Wrong answer7ms4868 KiB
subtask50/40
32Accepted17ms5064 KiB
33Accepted61ms6408 KiB
34Accepted115ms7836 KiB
35Accepted164ms9316 KiB
36Accepted185ms9432 KiB
37Accepted186ms9468 KiB
38Wrong answer94ms7252 KiB
39Wrong answer115ms8792 KiB
40Wrong answer28ms5880 KiB
41Wrong answer43ms5960 KiB