結果
問題 | No.1074 増殖 |
ユーザー | QCFium |
提出日時 | 2020-06-05 21:54:37 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,100 bytes |
コンパイル時間 | 2,861 ms |
コンパイル使用メモリ | 173,588 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-05-09 20:57:45 |
合計ジャッジ時間 | 4,111 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 27 ms
5,376 KB |
testcase_07 | AC | 28 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 22 ms
5,376 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
ソースコード
#include <bits/stdc++.h> int ri() { int n; scanf("%d", &n); return n; } struct Stairs { std::set<std::pair<int, int> > all; Stairs () { all.insert({-1000000000, 1000000000}); all.insert({1000000000, -1000000000}); } int add(int x, int y) { auto tmp = all.insert({x, y}); if (!tmp.second) return 0; auto itr = tmp.first; if (std::next(itr)->second >= y) { all.erase(itr); return 0; } int res = x * y; while (std::prev(itr)->second <= y) { res -= std::prev(itr)->first * std::prev(itr)->second; if (std::prev(itr, 2)->first > 0) res += std::prev(itr, 2)->first * std::prev(itr)->second; all.erase(std::prev(itr)); } if (std::prev(itr)->first > 0) res -= std::prev(itr)->first * y; if (std::next(itr)->second > 0) res -= std::next(itr)->second * x; return res; } }; int main() { int n = ri(); Stairs all[4] = { Stairs() }; for (int i = 0; i < n; i++) { int x0 = ri(), y0 = ri(); int x1 = ri(), y1 = ri(); int res = all[0].add(x1, y1) + all[1].add(-x0, y1) + all[2].add(x1, -y0) + all[3].add(-x0, -y0); printf("%d\n", res); } return 0; }