| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 647413 | Alenygam | Zalmoxis (BOI18_zalmoxis) | C++14 | 42 ms | 48084 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <stack>
#include <stdio.h>
#include <inttypes.h>
#include <sys/stat.h>
#include <sys/mman.h>
using namespace std;
class fio {
size_t rsize;
unsigned char* rbuf;
int ridx;
public:
fio(FILE* f) : ridx(0) {
int file = fileno(f);
struct stat rstat;
fstat(file, &rstat);
rsize = rstat.st_size;
rbuf = (unsigned char*)mmap(0,rsize,PROT_READ,MAP_FILE|MAP_PRIVATE,file,0);
}
inline bool isBlank() {
return
rbuf[ridx] == '\n' || rbuf[ridx] == '\t' || rbuf[ridx] == '\r' ||
rbuf[ridx] == '\f' || rbuf[ridx] == '\v' || rbuf[ridx] == ' ';
}
inline void consumeBlank() { while (isBlank()) ridx++; }
inline void sgravinput(int& res){
res = 0;
int flag = 0;
consumeBlank();
if (rbuf[ridx] == '-'){
flag = 1;
ridx++;
}
while (!isBlank() && ridx < rsize)
res = 10 * res + rbuf[ridx++] - '0';
res = flag ? -res : res;
}
};
struct linkedListNode {
int8_t val;
linkedListNode *next = nullptr;
bool splittable = false;
};
linkedListNode preallocLinked[1000001];
int lastNodeLnkd = 0;
inline linkedListNode* get_new_lnkd_node() {
return &preallocLinked[lastNodeLnkd++];
}
int values[1000010];
int lastStck = -1;
int stck[1000001];
int main() {
fio a(fopen("text.txt", "r"));
int N, K;
a.sgravinput(N);
a.sgravinput(K);
for (int i = 0; i < N; i++) {
a.sgravinput(values[i]);
}
int size = 0;
linkedListNode *head = get_new_lnkd_node();
linkedListNode *tail = head;
stck[++lastStck] = 30;
for (int i = 0; i < N; i++) {
while (lastStck >= 0 && stck[lastStck] < values[i]) {
tail->next = get_new_lnkd_node();
tail = tail->next;
tail->val = stck[lastStck];
tail->splittable = (stck[lastStck] != 0);
size++;
lastStck--;
}
while (stck[lastStck] > values[i]) {
int tmp = stck[lastStck]-1;
lastStck--;
stck[++lastStck] = tmp;
stck[++lastStck] = tmp;
}
tail->next = get_new_lnkd_node();
tail = tail->next;
tail->val = values[i];
tail->splittable = false;
size++;
lastStck--;
}
while (lastStck >= 0) {
tail->next = get_new_lnkd_node();
tail = tail->next;
tail->val = stck[lastStck];
tail->splittable = true;
size++;
lastStck--;
}
linkedListNode *hd = head->next;
head = head->next;
while (head != nullptr) {
while (size < (N + K) && head->splittable) {
linkedListNode *newNode = get_new_lnkd_node();
head->val = head->val - 1;
head->splittable = (head->val != 0);
newNode->val = head->val;
newNode->next = head->next;
newNode->splittable = (newNode->val != 0);
head->next = newNode;
size++;
}
head = head->next;
}
while (hd != nullptr) {
printf("%d ", (int)hd->val);
hd = hd->next;
}
putchar_unlocked('\n');
}컴파일 시 표준 에러 (stderr) 메시지
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
