Submission #743107

#TimeUsernameProblemLanguageResultExecution timeMemory
743107vjudge1Lasers (NOI19_lasers)C++17
0 / 100
1081 ms2444 KiB
#include <bits/stdc++.h>
using namespace std;
vector<long long> wall;
const int maxL = 1e6 + 1;
bool walloc[maxL] = {};

int main()
{
    long long l, r, amount, a, sum = 0;
    cin >> l >> r;
    for (long long i = 0; i < r; ++i)
    {
        cin >> amount;
        for (long long j = 0; j < amount; ++j)
        {
            cin >> a;
            wall.push_back(a);
        }
        if (amount == 1)
        {
            if (wall[0] >= (l / 2) + 1)
            {
                long long left = l - wall[0];
                for (long long k = left + 1; k <= l - left, k <= l; ++k)
                {
                    if (walloc[k] == false)
                    {
                        walloc[k] = true;
                        sum++;
                    }
                }
            }
        }
        else
        {
            for (long long k = 0; k < amount; ++k)
            {
                long long otherl = 0, otherr = 0;
                if (k != 0)
                {
                    for (long long j = k - 1; j >= 0; --j)
                        otherl += wall[j];
                }
                if (k != amount - 1)
                {
                    for (long long j = k + 1; j < amount; ++j)
                        otherr += wall[j];
                }
                long long wallleft = l - otherl - otherr;
                if (wall[k] >= (wallleft / 2) + 1)
                {
                    long long coverage = wallleft - wall[k];
                    for (long long j = otherl + 1 + coverage; j <= l - otherr - coverage, j <= l; ++j)
                    {
                        if (walloc[j] == false)
                        {
                            walloc[j] = true;
                            sum++;
                        }
                    }
                }
            }
        }
        while (!wall.empty())
            wall.pop_back();
    }
    cout << sum;
}

Compilation message (stderr)

lasers.cpp: In function 'int main()':
lasers.cpp:24:48: warning: left operand of comma operator has no effect [-Wunused-value]
   24 |                 for (long long k = left + 1; k <= l - left, k <= l; ++k)
      |                                              ~~^~~~~~~~~~~
lasers.cpp:53:65: warning: left operand of comma operator has no effect [-Wunused-value]
   53 |                     for (long long j = otherl + 1 + coverage; j <= l - otherr - coverage, j <= l; ++j)
      |                                                               ~~^~~~~~~~~~~~~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...