結果
問題 | No.1338 Giant Class |
ユーザー | iiljj |
提出日時 | 2021-01-15 23:04:41 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,080 bytes |
コンパイル時間 | 819 ms |
コンパイル使用メモリ | 61,824 KB |
実行使用メモリ | 11,264 KB |
最終ジャッジ日時 | 2024-05-05 01:01:05 |
合計ジャッジ時間 | 2,621 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 2 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 | - |
ソースコード
#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[100000 * 21]; 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; }