제출 #999977

#제출 시각아이디문제언어결과실행 시간메모리
999977abczz추월 (IOI23_overtaking)C++17
0 / 100
1 ms348 KiB
#include "overtaking.h"
#include <iostream>
#include <vector>
#include <algorithm>
#include <array>
#define ll long long

using namespace std;

vector <array<ll, 2>> A;
vector <ll> U;
vector <vector <ll>> V;
vector <vector <array<ll, 2>>> nx;
ll z;
void init(int L, int N, std::vector<long long> T, std::vector<int> W, int X, int M, std::vector<int> S)
{
    A.clear();
    U.clear();
    V.resize(M);
    nx.resize(M);
    for (auto u : S) U.push_back(u);
    for (int i=0; i<N; ++i) {
        if (W[i] > X) {
            A.push_back({T[i], W[i]});
        }
    }
    ll p, l, r, mid;
    for (int i=0; i<M; ++i) {
        p = 0;
        sort(A.begin(), A.end(), [](auto a, auto b) {
            return a[0] < b[0] || (a[0] == b[0] && a[1] < b[1]);
        });
        for (auto [x, y] : A) V[i].push_back(x);
        if (i == M-1) continue;
        for (auto &[x, y] : A) {
            x += (S[i+1]-S[i]) * y;
            p = x = max(p, x);
        }
    }
    z = X;
    nx[M-1].resize(V[0].size());
    for (int j=0; j<V[0].size(); ++j) nx[M-1][j] = {M-1, j};
    for (int i=M-2; i>=0; --i) {
        nx[i].resize(V[i].size());
        nx[i][0] = {i, 0};
        for (int j=1; j<V[i].size(); ++j) {
            l = i+1, r = M-1, mid;
            while (l < r) {
                mid = (l+r)/2;
                if (V[i][j]+(S[i+1]-S[i]) * z <= V[mid][j-1]) r = mid;
                else l = mid+1;
            }
            if (V[i][j]+(S[i+1]-S[i]) * z <= V[l][j-1]) {
                nx[i][j] = nx[l][lower_bound(V[l].begin(), V[l].end(), V[l][j-1])-V[l].begin()];
            }
            else nx[i][j] = {i, j};
        }
    }
    return;
}

long long arrival_time(long long Y)
{
    ll l, r, mid;
    l = 0, r = V[0].size()-1;
    while (l < r) {
        mid = (l+r+1)/2;
        if (V[0][mid] >= Y) r = mid-1;
        else l = mid;
    }
    if (V[0][l] >= Y) return Y + U.back() * z;
    ll a = l;
    l = 0, r = V.size();
    while (l < r) {
        mid = (l+r)/2;
        if (Y+(U[mid] * z) <= V[mid][a]) r = mid;
        else l = mid+1;
    }
    if (Y+(U[l] * z) <= V[l][a]) {
        auto b = nx[l][a];
        return V[b[0]][b[1]] + (U.back()-U[b[0]]) * z;
    }
    else return Y + U.back() * z;
}

컴파일 시 표준 에러 (stderr) 메시지

overtaking.cpp: In function 'void init(int, int, std::vector<long long int>, std::vector<int>, int, int, std::vector<int>)':
overtaking.cpp:42:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   42 |     for (int j=0; j<V[0].size(); ++j) nx[M-1][j] = {M-1, j};
      |                   ~^~~~~~~~~~~~
overtaking.cpp:46:24: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   46 |         for (int j=1; j<V[i].size(); ++j) {
      |                       ~^~~~~~~~~~~~
overtaking.cpp:47:34: warning: right operand of comma operator has no effect [-Wunused-value]
   47 |             l = i+1, r = M-1, mid;
      |                                  ^
#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...