제출 #1000027

#제출 시각아이디문제언어결과실행 시간메모리
1000027abczz추월 (IOI23_overtaking)C++17
9 / 100
1 ms604 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);
    z = X;
    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]});
        }
    }
    if (A.empty()) return;
    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 += (U[i+1]-U[i]) * y;
            p = x = max(p, 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]+(U[mid]-U[i]) * z <= V[mid][j-1]) r = mid;
                else l = mid+1;
            }
            if (V[i][j]+(U[mid]-U[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)
{
    if (V[0].empty()) return Y + U.back() * z;
    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 = U.size()-1;
    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:43:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   43 |     for (int j=0; j<V[0].size(); ++j) nx[M-1][j] = {M-1, j};
      |                   ~^~~~~~~~~~~~
overtaking.cpp:47:24: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   47 |         for (int j=1; j<V[i].size(); ++j) {
      |                       ~^~~~~~~~~~~~
overtaking.cpp:48:34: warning: right operand of comma operator has no effect [-Wunused-value]
   48 |             l = i+1, r = M-1, mid;
      |                                  ^
overtaking.cpp:54:31: warning: 'mid' may be used uninitialized in this function [-Wmaybe-uninitialized]
   54 |             if (V[i][j]+(U[mid]-U[i]) * z <= V[l][j-1]) {
      |                               ^
#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...