結果

問題 No.9 モンスターのレベル上げ
ユーザー magicalkozomagicalkozo
提出日時 2023-08-14 20:15:07
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 2,390 bytes
コンパイル時間 407 ms
コンパイル使用メモリ 31,616 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-02 08:17:18
合計ジャッジ時間 5,235 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 436 ms
5,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 118 ms
5,376 KB
testcase_06 AC 38 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 54 ms
5,376 KB
testcase_09 AC 423 ms
5,376 KB
testcase_10 WA -
testcase_11 AC 400 ms
5,376 KB
testcase_12 AC 326 ms
5,376 KB
testcase_13 WA -
testcase_14 AC 428 ms
5,376 KB
testcase_15 AC 386 ms
5,376 KB
testcase_16 WA -
testcase_17 AC 244 ms
5,376 KB
testcase_18 AC 213 ms
5,376 KB
testcase_19 AC 4 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <assert.h>
#include <limits.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <stddef.h>
#include <stdint.h>
#include <string.h>

typedef struct Pair {
    int fst;
    int snd;
} Key;

bool comp_greater(Key a, Key b) {
    return a.fst == b.fst ? a.snd > b.snd : a.fst > b.fst;
}
bool comp_gt(Key a, Key b) {
    return a.fst == b.fst ? a.snd >= b.snd : a.fst >= b.fst;
}
bool comp_less(Key a, Key b) {
    return a.fst == b.fst ? a.snd < b.snd : a.fst < b.fst;
}
bool comp_lt(Key a, Key b) {
    return a.fst == b.fst ? a.snd <= b.snd : a.fst <= b.fst;
}
bool comp_equal(Key a, Key b) {
    return a.fst == b.fst && a.snd == b.snd;
}

size_t bheap_size;
Key bheap[4097];

void init_bheap(void) {
    bheap_size = 0;
    for (int i = 0; i < 4097; i++)
        bheap[i] = (Key){INT_MAX, INT_MAX};
}
#define parent(i) ((i) >> 1)
#define left(i) ((i) << 1)
#define right(i) (((i) << 1) + 1)

void min_heapify(size_t i) {
    size_t l, r, m;
    l = left(i), r = right(i);
    if ((l < bheap_size) && (comp_less(bheap[l], bheap[r])))
        m = l;
    else
        m = i;
    if ((r < bheap_size) && (comp_less(bheap[r], bheap[m])))
        m = r;
    if (m != i) {
        Key tmp = bheap[i];
        bheap[i] = bheap[m];
        bheap[m] = tmp;
        min_heapify(m);
    }
}
Key pop_bheap(void) {
    Key ret = bheap[1];
	bheap[1] = bheap[--bheap_size];
	min_heapify(1);
    return ret;
}
void push_bheap(Key a) {
	size_t i, m;

	i = bheap_size++;
	bheap[i] = a;
	while (i > 1 && (comp_less(bheap[i], bheap[m = parent(i)]))) {
		Key qt = bheap[i];
        bheap[i] = bheap[m];
        bheap[m] = qt;
		i = m;
	}
}

int main(void) {
    int N;
    scanf("%d", &N);
    int A[3030], B[3030];
    for (int i = 0; i < N; i++)
        scanf("%d", &A[i]);
    for (int i = 0; i < N; i++) {
        scanf("%d", &B[i]);
        B[i + N] = B[i];
    }
    int m = 1073741824;
    for (int i = 0; i < N; i++) {
        init_bheap();
        for (int j = 0; j < N; j++)
            push_bheap((Key){A[j], 0});
        for (int j = 0; j < N; j++) {
            Key x = pop_bheap();
            push_bheap((Key){x.fst + B[i + j] / 2, x.snd + 1});
        }
        int tmp = 0;
        while (bheap_size) {
            Key x = pop_bheap();
            tmp = tmp > x.snd ? tmp : x.snd;
        }
        m = m < tmp ? m : tmp;
    }
    printf("%d\n", m);
    return 0;
}
0