結果

問題 No.456 Millions of Submits!
ユーザー pekempeypekempey
提出日時 2018-12-24 18:20:00
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,849 bytes
コンパイル時間 1,244 ms
コンパイル使用メモリ 38,188 KB
実行使用メモリ 12,412 KB
最終ジャッジ日時 2023-10-26 03:03:06
合計ジャッジ時間 6,418 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <stdlib.h>
#include <algorithm>
#include <unistd.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) {
    for (int i = 0; i < 32; i += 16) {
        static int c[65537];
        static T t[200000];
        for (int j = 0; j < 65537; j++) {
            c[j] = 0;
        }
        for (int j = 0; j < n; j++) {
            c[(f(a[j]) >> i & 0xffff) + 1]++;
            t[j] = a[j];
        }
        for (int j = 0; j < 65536; j++) {
            c[j + 1] += c[j];
        }
        for (int j = 0; j < n; j++) {
            a[c[f(t[j]) >> i & 0xffff]++] = t[j];
        }
    }
}

int i32() {
    int n, c;
    while ((c = getchar_unlocked()) < '0');
    n = c - '0';
    while ((c = getchar_unlocked()) >= '0') {
        n = n * 10 + (c - '0');
    }
    return n;
}

int main() {
    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; });
    {
        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; });
    mysort(a, n, [](struct P x) { return x.a; });
    for (int i = 0; i < n; i++) {
        update(a[i].b, query(a[i].b) + a[i].c);
    }
    printf("%lld\n", query(200000));
}

0