이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
// #pragma GCC optimize ("unroll-loops")
int position[20005], speed[20005][3], charge[20005], ans[20005], boost[20005];
bool acc[20005], finished[20005];
void solve() {
    int n;
    cin >> n;
    for (int i = 0; i < n; ++i) {
        cin >> speed[i][0] >> speed[i][1] >> speed[i][2];
        ans[i] = 1e9;
    }
    int m;
    cin >> m;
    for (int i = 0; i < m; ++i) {
        int x;
        cin >> x;
        acc[x] = 1;
    }
    for (int sec = 1; sec <= 15000; ++sec) {
        for (int i = 0; i < n; ++i) {
            if (finished[i]) continue;
            if (boost[i]) {
                --boost[i];
                ++position[i];
                continue;
            }
            int use = (position[i]) / 100;
            ++charge[i];
            if (charge[i] == speed[i][use]) {
                ++position[i];
                charge[i] = 0;
            }
        }
        // cout << sec << ' ' << position[0] << '\n';
        vector<int> people[301];
        for (int i = 0; i < n; ++i) {
            if (position[i] == 300) {
                finished[i] = 1;
                ans[i] = min(ans[i], sec);
            }
            people[position[i]].push_back(i);
        }
        int found = 0;
        for (int i = 300; i >= 1; --i) {
            if (acc[i]) {
                for (int x : people[i]) {
                    if (!boost[x]) {
                        boost[x] = found % 20;
                    }
                }
            }
            found += people[i].size();
        }
    }
    for (int i = 0; i < n; ++i) {
        cout << ans[i] << '\n';
    }
}
int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
    solve();
}
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... |