結果

問題 No.1148 土偶Ⅲ
ユーザー iiljjiiljj
提出日時 2021-01-13 23:53:02
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 1,451 bytes
コンパイル時間 670 ms
コンパイル使用メモリ 61,456 KB
実行使用メモリ 7,936 KB
最終ジャッジ日時 2024-05-02 08:20:46
合計ジャッジ時間 2,070 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 17 ms
5,376 KB
testcase_06 AC 54 ms
7,936 KB
testcase_07 AC 33 ms
6,272 KB
testcase_08 AC 46 ms
7,296 KB
testcase_09 AC 45 ms
7,424 KB
testcase_10 AC 18 ms
5,376 KB
testcase_11 AC 47 ms
7,296 KB
testcase_12 AC 4 ms
5,376 KB
testcase_13 AC 6 ms
5,376 KB
testcase_14 AC 5 ms
5,376 KB
testcase_15 AC 30 ms
6,016 KB
testcase_16 AC 12 ms
5,376 KB
testcase_17 AC 53 ms
7,808 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 21 ms
5,376 KB
testcase_20 AC 26 ms
5,376 KB
testcase_21 AC 18 ms
5,376 KB
testcase_22 AC 4 ms
5,376 KB
testcase_23 AC 4 ms
5,376 KB
testcase_24 AC 5 ms
5,376 KB
testcase_25 AC 5 ms
5,376 KB
testcase_26 AC 16 ms
5,376 KB
testcase_27 AC 4 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("Ofast")
#pragma GCC target("avx2")

#include <map>
#include <stdio.h>
#include <sys/mman.h>

// clang-format off
#define RD(v) int v=0;{int _c;while(_c=*rp++-48,_c>=0)v=v*10+_c;} //
#define RDULL(v) unsigned long long v=0;{int _c;while(_c=*rp++-48,_c>=0)v=v*10+_c;} //
#define wt_int(var,buf,ptr) while(var){buf[ptr++]=var%10;var/=10;}while(ptr--)putc_unlocked(buf[ptr]+'0',stdout);
// clang-format on

int a[100000];
int main() {
    char *rp = (char *)mmap(0l, 1l << 28, 1, 2, 0, 0ll);
    RD(n) RD(w);
    int *ap = a;
    for (int i = 0; i < n; ++i) {
        RD(t);
        *ap++ = t;
    }

    int v = 0, ng_cnt = 0, ma = 0;
    int l = 0, r = 0;

    std::map<int, int> mp;
    // clang-format off
#define add(idx) {v += a[idx]; mp[a[idx]]++; if (mp[a[idx]] >= 2) ng_cnt++; idx++;}
#define remove(idx) {v -= a[idx]; mp[a[idx]]--; if (mp[a[idx]] == 1) ng_cnt--; idx++;}
#define evaluate() ((ng_cnt > 0 || v > w) ? -1 : 0)
#define consume() {if (r - l > ma) ma = r - l;}
    // clang-format on

    if (r <= n) add(r);
    do {
        int e = evaluate();
        if (ng_cnt > 0 || v > w) remove(l) else {
                if (e == 0) consume() if (r <= n - 1) add(r) else remove(l)
            }
        if (l == r && r <= n - 1) add(r)
    } while (l < n && r <= n);

    if (ma == 0) {
        putc_unlocked('0', stdout);
    } else {
        char buf[9];
        n = 0;
        wt_int(ma, buf, n);
    }

    return 0;
}
0