# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
985455 | islam998 | 푸드 코트 (JOI21_foodcourt) | C++17 | 1100 ms | 524288 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <vector>
#include <deque>
using namespace std;
int main() {
int N, M, Q;
cin >> N >> M >> Q;
vector<deque<int>> shops(N); // Vector of deques to represent customers in each shop
vector<int> results; // Vector to store the results of "Service" events
for (int i = 0; i < Q; ++i) {
int T;
cin >> T;
if (T == 1) { // Join event
int L, R, C, K;
cin >> L >> R >> C >> K;
for (int j = L - 1; j < R; ++j) {
for (int k = 0; k < K; ++k) {
shops[j].push_back(C);
}
}
} else if (T == 2) { // Leave event
int L, R, K;
cin >> L >> R >> K;
for (int j = L - 1; j < R; ++j) {
for (int k = 0; k < K && !shops[j].empty(); ++k) {
shops[j].pop_front();
}
}
} else if (T == 3) { // Service event
int A, B;
cin >> A >> B;
if (B <= shops[A - 1].size()) {
results.push_back(shops[A - 1][B - 1]);
} else {
results.push_back(0);
}
}
}
// Print all results of "Service" events
for (int result : results) {
cout << result << endl;
}
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |