結果

問題 No.1338 Giant Class
ユーザー iiljjiiljj
提出日時 2021-01-15 23:02:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,079 bytes
コンパイル時間 737 ms
コンパイル使用メモリ 62,208 KB
実行使用メモリ 8,832 KB
最終ジャッジ日時 2024-05-05 01:00:26
合計ジャッジ時間 2,481 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

#include <map>
#include <stdlib.h>
#include <sys/mman.h>
#include <unistd.h>

// clang-format off
#define RD(v) int v=0;{int _c;while(_c=*rp++-48,_c>=0)v=v*10+_c;}
#define WT(var,buf,ptr) long v=var;ptr=0;while(v){buf[ptr++]=v%10;v/=10;}while(ptr--){*wp++=buf[ptr]+'0';}*wp++='\n';
// clang-format on

int y[100000];
int x[100000];
char wbuf[3 * 100000];

int main() {
    char *rp = (char *)mmap(0l, 1l << 28, 1, 2, 0, 0ll);
    char *wp = wbuf;
    RD(h) RD(w) RD(q);
    int *xp = x, *yp = y;
    for (int i = 0; i < q; ++i) {
        RD(yy) RD(xx);
        *yp++ = --yy;
        *xp++ = --xx;
    }
    std::map<int, int> mp;
    xp = x, yp = y;
    long prod = (long)h * w;
    char buf[9];
    int ptr;
    for (int i = 0; i < q; ++i) {
        int mi = (mp.count(*xp)) ? mp[*xp] : h; //
        if (*yp < mi) {
            prod -= (mi - *yp);
            mp[*xp] = *yp;
        }
        xp++, yp++; //
        WT(prod, buf, ptr);
    }
    write(1, wbuf, (wp - wbuf) * sizeof(*wbuf));
    exit(0);
    return 0;
}
0