제출 #848413

#제출 시각아이디문제언어결과실행 시간메모리
848413Muaath_5Overtaking (IOI23_overtaking)C++17
39 / 100
3533 ms27080 KiB
#include <bits/stdc++.h>
#define ll long long
#define ld long double

using namespace std;

const ll N = 1005, INF = 7e15;

ll n, m, l, x;
ll pos[N][N], full[N][N];
vector<int> srt[N];
vector<int> spd;
vector<ll> st;
vector<int> len;



ll tmp;
void init(int L, int N, vector<ll> T, vector<int> W, int X, int M, vector<int> S) {
	n = N, m = M, l = L, x = X, spd = W, st = T, len = S;
	for (int j = 0; j < n; j++) {
		pos[0][j] = T[j];
		full[0][j] = T[j];
		srt[0].push_back(j);
	}
	sort(srt[0].begin(), srt[0].end(), [](int x, int y) {
		return st[x] == st[y] ? spd[x] < spd[y] : st[x] < st[y];
	});
	for (int i = 0; i < m-1; i++) {
		cerr << "Station " << i + 1 << '\n';
		pos[i + 1][srt[i][0]] = 1ll * spd[srt[i][0]] * (len[i + 1] - len[i]) + pos[i][srt[i][0]];
		//full[i + 1][srt[i][0]] = 1ll * spd[srt[i][0]] * (len[i + 1] - len[i]) + full[i][srt[i][0]];
        srt[i + 1].push_back(0);
		cerr << "Bus " << srt[i][0] << " Arrives " << pos[i+1][srt[i][0]] << '\n';
		for (int j = 1; j < n; j++) {
            srt[i + 1].push_back(j);
			//full[i + 1][srt[i][j]] = 1ll * spd[srt[i][j]] * (len[i + 1] - len[i]) + full[i][srt[i][j]];
            const ll exp = 1ll * spd[srt[i][j]] * (len[i + 1] - len[i]) + pos[i][srt[i][j]];
            if (exp < pos[i + 1][srt[i][j - 1]]) {
				pos[i + 1][srt[i][j]] = pos[i + 1][srt[i][j - 1]];
				cerr << "Intersects: ";
			}
			else {
				pos[i + 1][srt[i][j]] = exp;
			}
			cerr << "Bus " << srt[i][j] << " Arrives " << pos[i + 1][srt[i][j]] << '\n';
		}
        tmp = i+1;
		sort(srt[i+1].begin(), srt[i+1].end(), [](int x, int y) {
			return pos[tmp][x] == pos[tmp][y] ? spd[x] < spd[y] : pos[tmp][x] < pos[tmp][y];
		});
	}
}

ll arrival_time(ll Y) {
	ll tm = Y;
	for (int i = 0; i < m-1; i++) {
		int idx = -1;
		// Can be optimized using binary search
		while (idx+1 < n && (pos[i][srt[i][idx + 1]] < tm || (pos[i][srt[i][idx + 1]] == tm && spd[srt[i][idx+1]] < x)))
			idx++;
		const ll exp = 1ll * x * (len[i + 1] - len[i]) + tm;
		if (idx == -1)
			tm = exp;
		else {
			int prv = srt[i][idx];
			if (exp < pos[i + 1][prv]) {
				tm = pos[i + 1][prv];
			}
			else {
				tm = exp;
			}
		}
	}
	return tm;
}
#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...