Submission #429738

#TimeUsernameProblemLanguageResultExecution timeMemory
429738schseHandcrafted Gift (IOI20_gift)C++17
70 / 100
1597 ms12960 KiB
#include "gift.h"
#include <bits/stdc++.h>
using namespace std;
#ifndef EVAL
#include "grader.cpp"
#endif

int construct(int n, int r, std::vector<int> a, std::vector<int> b, std::vector<int> x)
{

    int sb = 0;
    for (int i : x)
        sb |= i;
    if (sb == 1)
    {
        std::string s(n, 'R');
        craft(s);
        return 1;
    }
    else if (sb == 2)
    {
        for (int i = 0; i < a.size(); i++)
            if (a[i] == b[i])
                return 0;
        std::string s(n, 'R');
        for (int i = 0; i < n; i++)
            s[i] = i % 2 ? 'R' : 'B';
        craft(s);
        return 1;
    }
    else
    {
        vector<int> prefix(n);
        iota(prefix.begin(), prefix.end(), 0);
        for (int i = 0; i < a.size(); i++) //update single color
        {
            if (x[i] == 1)
            {
                for (int e = b[i] + 1; e < n; e++)
                    prefix[e] -= prefix[b[i]] - prefix[a[i]];
                for (int e = a[i] + 1; e < b[i] + 1; e++)
                    prefix[e] = prefix[a[i]];
            }
        }

        for (int i = 0; i < a.size(); i++) //check wetherpossible
        {
            if (x[i] == 2)
            {
                if (prefix[b[i]] - prefix[a[i]] < 1)
                    return 0;
            }
        }
        std::string s(n, 'R');
        for (int i = 0; i < n; i++)
            s[i] = prefix[i] % 2 ? 'R' : 'B';
        craft(s);
        return 1;
    }
}

Compilation message (stderr)

gift.cpp: In function 'int construct(int, int, std::vector<int>, std::vector<int>, std::vector<int>)':
gift.cpp:22:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   22 |         for (int i = 0; i < a.size(); i++)
      |                         ~~^~~~~~~~~~
gift.cpp:35:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   35 |         for (int i = 0; i < a.size(); i++) //update single color
      |                         ~~^~~~~~~~~~
gift.cpp:46:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   46 |         for (int i = 0; i < a.size(); i++) //check wetherpossible
      |                         ~~^~~~~~~~~~
#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...