結果

問題 No.777 再帰的ケーキ
ユーザー pekempeypekempey
提出日時 2018-12-24 18:46:21
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 2,043 bytes
コンパイル時間 711 ms
コンパイル使用メモリ 120,832 KB
実行使用メモリ 28,288 KB
最終ジャッジ日時 2024-05-07 18:21:35
合計ジャッジ時間 3,553 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 3 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 3 ms
5,376 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 3 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 3 ms
5,376 KB
testcase_25 AC 3 ms
5,376 KB
testcase_26 AC 3 ms
5,376 KB
testcase_27 AC 3 ms
5,376 KB
testcase_28 AC 40 ms
26,752 KB
testcase_29 AC 39 ms
26,624 KB
testcase_30 AC 42 ms
28,288 KB
testcase_31 AC 40 ms
28,160 KB
testcase_32 AC 36 ms
27,136 KB
testcase_33 AC 18 ms
17,664 KB
testcase_34 AC 25 ms
24,320 KB
testcase_35 AC 36 ms
27,520 KB
testcase_36 AC 31 ms
27,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <stdlib.h>
#include <algorithm>
#include <unistd.h>
#include <fcntl.h>

struct P {
    int a, b, c;
};

int n;
struct P a[200000];
long long bit[200001];

long long max(long long x, long long y) {
    return x > y ? x : y;
}

void update(int k, long long v) {
    for (int i = k + 1; i <= 200000 && bit[i] < v; i += i & -i) {
        bit[i] = v;
    }
}

long long query(int k) {
    long long res = 0;
    for (int i = k; i > 0; i -= i & -i) {
        res = max(res, bit[i]);
    }
    return res;
}

template<class T, class F>
void mysort(T *a, int n, F f) {
    static int c[0xffff + 2];
    static T t[200000];
    for (int i = 0; i <= 0xffff; i++) {
        c[i] = 0;
    }
    for (int i = 0; i < n; i++) {
        c[f(a[i]) + 1]++;
        t[i] = a[i];
    }
    for (int i = 0; i <= 0xffff; i++) {
        c[i + 1] += c[i];
    }
    for (int i = 0; i < n; i++) {
        a[c[f(t[i])]++] = t[i];
    }
}

char buf[200000 * 33 + 100];
int k = 0;

int i32() {
    int res = 0;
    while (buf[k] < '0') k++;
    while (buf[k] >= '0') {
        res = res * 10 + (buf[k] - '0');
        k++;
    }
    return res;
}

int main() {
    read(STDIN_FILENO, buf, sizeof(buf));
    int n = i32();
    for (int i = 0; i < n; i++) {
        a[i].a = i32();
        a[i].b = i32();
        a[i].c = i32();
    }
    mysort(a, n, [](struct P x) { return x.b & 0xffff; });
    mysort(a, n, [](struct P x) { return x.b >> 16 & 0xffff; });
    {
        int k = -1;
        int p = -1;
        for (int i = 0; i < n; i++) {
            k += p != a[i].b;
            p = a[i].b;
            a[i].b = k;
        }
    }
    mysort(a, n, [](struct P x) { return (2147483647 - x.b) & 0xffff; });
    mysort(a, n, [](struct P x) { return (2147483647 - x.b) >> 16 & 0xffff; });
    mysort(a, n, [](struct P x) { return x.a & 0xffff; });
    mysort(a, n, [](struct P x) { return x.a >> 16 & 0xffff; });
    for (int i = 0; i < n; i++) {
        update(a[i].b, query(a[i].b) + a[i].c);
    }
    printf("%lld\n", query(200000));
}


0