結果

問題 No.649 ここでちょっとQK!
コンテスト
ユーザー LightBells
提出日時 2018-03-08 21:21:50
言語 C++11
(gcc 15.2.0 + boost 1.89.0)
コンパイル:
g++-15 -O2 -lm -std=gnu++11 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
WA  
実行時間 -
コード長 2,383 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 376 ms
コンパイル使用メモリ 72,320 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2026-04-20 21:37:41
合計ジャッジ時間 5,954 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge2_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample -- * 4
other AC * 3 WA * 1 TLE * 1 -- * 27
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <cstdio>
#include <iostream>
using namespace std;

struct Node{
    unsigned long long value;
    int prev,next;
};

int memory_cursor;
int counter;
Node *nil;
Node list[200000];

void init(){
    nil = &list[0];
    nil->value = -1;
    nil->next = 0;
    nil->prev = 0;
    memory_cursor++;
}

void customInsert(int base,unsigned long long ins){
    Node* add = &list[memory_cursor];
    add-> value = ins;
    add-> next = list[base].next;
    add->prev = base;
    list[list[base].next].prev = memory_cursor;
    list[base].next = memory_cursor;
    memory_cursor++;
    counter++;
}

void insert(int ins){
    customInsert(0,ins);
}

void sortedInsert(unsigned long long key){
    Node* cur = &list[nil->next];
    while(key < cur->value && cur!=nil)
        cur = &list[cur->next];
    customInsert(cur->prev,key);
}

bool deleteNode(Node* del){
    if (del==nil) return false;
    list[del->next].prev = del->prev;
    list[del->prev].next = del->next;
    counter--;
    return true;
}

bool deleteFirst(){
    return deleteNode(&list[nil->next]);
}

void cleanup(){
    while(deleteFirst());
}

Node* searchNode(unsigned long long key){
    Node* cur = &list[nil->next];
    while(cur!=nil && cur->value!=key){
        cur = &list[cur->next];
    }
    return cur;
}

Node* bigger_from(int index){
    if (index>=counter) return nil;
    int count=1;
    Node* cur = &list[nil->next];
    while(count<index){
        cur = &list[cur->next];
        count++;
    }
    return cur;
}

Node* smaller_from(int index){
    if (index>=counter) return nil;
    int count=0;
    Node* cur = &list[nil->prev];
    while(count<index){
        cur = &list[cur->prev];
        count++;
    }
    return cur;
}

void traceNode(){
    Node* cur= &list[nil->next];
    while(cur!=nil){
        cout << cur->value << endl;
        cur = &list[cur->next];
    }
}

signed main(){
    init();
    int q,k;
    int qs[200000][2];
    scanf("%d %d",&q,&k);
    for (int i=0;i<q;i++){
        scanf("%d",&qs[i][0]);
        if (qs[i][0]==1){
            scanf("%lld",&qs[i][1]);
        }
    }
    for (int i=0;i<q;i++){
        if (qs[i][0]==1){
            sortedInsert(qs[i][1]);
        }
        else if(qs[i][0]==2){
            Node* temp = smaller_from(k-1);
            printf("%lld\n",temp->value);
            deleteNode(temp);
        }
    }
    cleanup();
    return 0;
}
0