結果
| 問題 | No.3709 Unknown Treasure |
| コンテスト | |
| ユーザー |
秋ナス🍆
|
| 提出日時 | 2026-09-12 08:08:31 |
| 言語 | C++23(gcc16) (gcc 16.1.0 + boost 1.92.0 + ACL) |
| 結果 |
TLE
不安定
|
| 実行時間 | - |
| コード長 | 15,413 bytes |
| 記録 | |
| コンパイル時間 | 6,158 ms |
| コンパイル使用メモリ | 390,696 KB |
| 実行使用メモリ | 35,200 KB |
| 最終ジャッジ日時 | 2026-09-12 08:09:11 |
| 合計ジャッジ時間 | 35,861 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 30 TLE * 6 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
#include <cstdio>
#include <cstdlib>
#include <iostream>
#include <string>
#include <tuple>
#include <type_traits>
#include <utility>
#include <vector>
#if defined(__unix__) || defined(__APPLE__)
#include <unistd.h>
#endif
template <typename T>
std::istream& operator>>(std::istream& is, std::vector<T>& v);
template <typename T1, typename T2>
std::istream& operator>>(std::istream& is, std::pair<T1, T2>& p);
template <typename... Args>
std::istream& operator>>(std::istream& is, std::tuple<Args...>& t);
namespace input_detail {
#ifdef LOCAL
inline std::size_t& read_count() {
static std::size_t count = 0;
return count;
}
inline bool& failed_read() {
static bool failed = false;
return failed;
}
inline bool stdin_is_terminal() {
#if defined(__unix__) || defined(__APPLE__)
return isatty(fileno(stdin));
#else
return false;
#endif
}
struct EndOfInputChecker {
~EndOfInputChecker() {
if (stdin_is_terminal() || failed_read() || std::cin.bad()) return;
std::cin >> std::ws;
std::string token;
if (std::cin >> token) {
std::cerr << "[input error] 入力が余っています。\n"
<< " 最初に余った値: " << token << '\n'
<< " N と M、H と W、辺数 m、配列長 n などを間違えていないか確認してください。\n";
std::abort();
}
}
};
inline void ensure_end_checker() {
static EndOfInputChecker checker;
(void)checker;
}
inline void begin_input() {
ensure_end_checker();
}
template <typename T>
void read_one(std::istream& is, T& value) {
if (&is != &std::cin) {
is >> value;
return;
}
ensure_end_checker();
++read_count();
if (!(is >> value)) {
failed_read() = true;
std::cerr << "[input error] 入力が足りないか、型が合いません。\n"
<< " " << read_count() << " 個目の値を読み込めませんでした。\n"
<< " N と M、H と W、辺数 m、配列長 n などを間違えていないか確認してください。\n";
std::abort();
}
}
#else
inline void begin_input() {
}
template <typename T>
void read_one(std::istream& is, T& value) {
is >> value;
}
#endif
template <typename... Args>
void read_values(Args&... args) {
(read_one(std::cin, args), ...);
}
}
struct FastIO {
FastIO() {
std::ios_base::sync_with_stdio(false);
std::cin.tie(nullptr);
}
};
inline FastIO fast_io_init;
template <typename T1, typename T2>
std::istream& operator>>(std::istream& is, std::pair<T1, T2>& p) {
input_detail::read_one(is, p.first);
input_detail::read_one(is, p.second);
return is;
}
template <typename Tuple, std::size_t... I>
void read_tuple_impl(std::istream& is, Tuple& t, std::index_sequence<I...>) {
(..., input_detail::read_one(is, std::get<I>(t)));
}
template <typename... Args>
std::istream& operator>>(std::istream& is, std::tuple<Args...>& t) {
read_tuple_impl(is, t, std::index_sequence_for<Args...>{});
return is;
}
template <typename T>
std::istream& operator>>(std::istream& is, std::vector<T>& v) {
for (auto& elem : v) {
input_detail::read_one(is, elem);
}
return is;
}
template <typename T>
struct is_pair : std::false_type {};
template <typename T1, typename T2>
struct is_pair<std::pair<T1, T2>> : std::true_type {};
template <typename T>
struct is_tuple : std::false_type {};
template <typename... Args>
struct is_tuple<std::tuple<Args...>> : std::true_type {};
template <typename T>
struct is_vector : std::false_type {};
template <typename T>
struct is_vector<std::vector<T>> : std::true_type {};
template <typename T>
void adjust_zero_indexed(T& val) {
using DecayedT = std::decay_t<T>;
if constexpr (is_pair<DecayedT>::value) {
adjust_zero_indexed(val.first);
adjust_zero_indexed(val.second);
} else if constexpr (is_tuple<DecayedT>::value) {
std::apply([](auto&... args) { (adjust_zero_indexed(args), ...); }, val);
} else if constexpr (is_vector<DecayedT>::value) {
for (auto& elem : val) {
adjust_zero_indexed(elem);
}
} else if constexpr (std::is_arithmetic_v<DecayedT> && !std::is_same_v<DecayedT, char> && !std::is_same_v<DecayedT, signed char> &&
!std::is_same_v<DecayedT, unsigned char> && !std::is_same_v<DecayedT, wchar_t> &&
#if defined(__cpp_char8_t)
!std::is_same_v<DecayedT, char8_t> &&
#endif
!std::is_same_v<DecayedT, char16_t> && !std::is_same_v<DecayedT, char32_t> && !std::is_same_v<DecayedT, bool>) {
--val;
} else {
}
}
using default_type = long;
template <typename... Args>
void read(Args&... args) {
input_detail::read_values(args...);
}
template <typename T = default_type>
T read_val() {
T val;
input_detail::read_one(std::cin, val);
return val;
}
template <typename T1 = default_type, typename T2 = default_type>
std::pair<T1, T2> read_pair() {
std::pair<T1, T2> p;
input_detail::begin_input();
std::cin >> p;
return p;
}
template <typename... Args>
std::tuple<Args...> read_tuple() {
std::tuple<Args...> t;
input_detail::begin_input();
std::cin >> t;
return t;
}
template <typename T = default_type, typename Size, std::enable_if_t<std::is_integral_v<Size> && !std::is_same_v<Size, bool>, int> = 0>
std::vector<T> read_vec(Size n, bool zero_indexed = false) {
std::vector<T> v(n);
input_detail::begin_input();
std::cin >> v;
if (zero_indexed) {
adjust_zero_indexed(v);
}
return v;
}
template <typename T = default_type>
std::vector<T> read_vec(bool zero_indexed = false) {
int n;
input_detail::read_one(std::cin, n);
return read_vec<T>(n, zero_indexed);
}
template <typename T1 = default_type, typename T2 = default_type, typename Size,
std::enable_if_t<std::is_integral_v<Size> && !std::is_same_v<Size, bool>, int> = 0>
std::vector<std::pair<T1, T2>> read_vec_pair(Size n, bool zero_indexed = false) {
return read_vec<std::pair<T1, T2>>(n, zero_indexed);
}
template <typename T1 = default_type, typename T2 = default_type>
std::vector<std::pair<T1, T2>> read_vec_pair(bool zero_indexed = false) {
int n;
input_detail::read_one(std::cin, n);
return read_vec_pair<T1, T2>(n, zero_indexed);
}
template <typename... Args, typename Size, std::enable_if_t<std::is_integral_v<Size> && !std::is_same_v<Size, bool>, int> = 0>
std::vector<std::tuple<Args...>> read_vec_tuple(Size n, bool zero_indexed = false) {
return read_vec<std::tuple<Args...>>(n, zero_indexed);
}
template <typename... Args>
std::vector<std::tuple<Args...>> read_vec_tuple(bool zero_indexed = false) {
int n;
input_detail::read_one(std::cin, n);
return read_vec_tuple<Args...>(n, zero_indexed);
}
template <typename T = default_type>
std::vector<std::vector<T>> read_vec_grid(int h, int w, bool zero_indexed = false) {
std::vector<std::vector<T>> grid(h, std::vector<T>(w));
input_detail::begin_input();
std::cin >> grid;
if (zero_indexed) {
adjust_zero_indexed(grid);
}
return grid;
}
template <typename T = default_type>
std::vector<std::vector<T>> read_vec_grid(bool zero_indexed = false) {
int h, w;
input_detail::read_values(h, w);
return read_vec_grid<T>(h, w, zero_indexed);
}
template <typename T = default_type, typename Size, std::enable_if_t<std::is_integral_v<Size> && !std::is_same_v<Size, bool>, int> = 0>
std::vector<std::vector<T>> read_vec_var(Size n, bool zero_indexed = false) {
std::vector<std::vector<T>> res(n);
input_detail::begin_input();
for (int i = 0; i < static_cast<int>(n); ++i) {
int m;
input_detail::read_one(std::cin, m);
res[i] = read_vec<T>(m, zero_indexed);
}
return res;
}
template <typename T = default_type>
std::vector<std::vector<T>> read_vec_var(bool zero_indexed = false) {
int n;
input_detail::read_one(std::cin, n);
return read_vec_var<T>(n, zero_indexed);
}
template <typename T = default_type>
T read_zero_idx() {
T val;
input_detail::read_one(std::cin, val);
adjust_zero_indexed(val);
return val;
}
inline std::vector<std::vector<int>> read_graph(int n, int m, bool directed = false) {
std::vector<std::vector<int>> g(n);
input_detail::begin_input();
for (int i = 0; i < m; ++i) {
int u = read_zero_idx<int>();
int v = read_zero_idx<int>();
g[u].push_back(v);
if (!directed) {
g[v].push_back(u);
}
}
return g;
}
inline std::vector<std::vector<int>> read_graph(bool directed = false) {
int n, m;
input_detail::read_values(n, m);
return read_graph(n, m, directed);
}
template <typename Cost = default_type>
struct Edge {
int to;
Cost cost;
Edge() = default;
Edge(int to, Cost cost) : to(to), cost(cost) {}
};
template <typename Cost = default_type>
inline std::vector<std::vector<Edge<Cost>>> read_weighted_graph(int n, int m, bool directed = false) {
std::vector<std::vector<Edge<Cost>>> g(n);
input_detail::begin_input();
for (int i = 0; i < m; ++i) {
int u = read_zero_idx<int>();
int v = read_zero_idx<int>();
Cost w;
input_detail::read_one(std::cin, w);
g[u].push_back(Edge<Cost>{v, w});
if (!directed) {
g[v].push_back(Edge<Cost>{u, w});
}
}
return g;
}
template <typename Cost = default_type>
inline std::vector<std::vector<Edge<Cost>>> read_weighted_graph(bool directed = false) {
int n, m;
input_detail::read_values(n, m);
return read_weighted_graph<Cost>(n, m, directed);
}
#include <istream>
#include <numeric>
#include <print>
#include <vector>
#define ALL(a) (a).begin(), (a).end()
using i128 = __int128;
template <typename T, typename U>
inline bool chmin(T& a, const U& b) {
if (a > b) {
a = b;
return true;
}
return false;
}
template <typename T, typename U>
inline bool chmax(T& a, const U& b) {
if (a < b) {
a = b;
return true;
}
return false;
}
template <std::integral T>
inline T div_ceil(T a, T b) {
if (a > 0) return a / b + (a % b != 0);
return a / b;
}
template <std::integral T>
inline T div_floor(T a, T b) {
if (a < 0) return a / b - (a % b != 0);
return a / b;
}
template <std::integral T>
inline T mod(T a, T m) {
a %= m;
if (a < 0) a += m;
return a;
}
template <typename T>
inline constexpr T INF = std::numeric_limits<T>::max() / 2;
template <>
inline constexpr float INF<float> = std::numeric_limits<float>::infinity();
template <>
inline constexpr double INF<double> = std::numeric_limits<double>::infinity();
template <>
inline constexpr long double INF<long double> = std::numeric_limits<long double>::infinity();
template <typename T>
auto make_vector(size_t size, T&& initial_value) {
return std::vector<std::decay_t<T>>(size, std::forward<T>(initial_value));
}
template <typename... Args>
auto make_vector(size_t size, Args&&... args) {
auto inner = make_vector(std::forward<Args>(args)...);
return std::vector<decltype(inner)>(size, inner);
}
template <typename T = int>
inline std::vector<T> iota_vec(int n, T start = 0) {
std::vector<T> v(n);
std::iota(v.begin(), v.end(), start);
return v;
}
template <typename T>
inline std::vector<T> doubled_vec(const std::vector<T>& v) {
std::vector<T> res;
res.reserve(v.size() * 2);
res.insert(res.end(), v.begin(), v.end());
res.insert(res.end(), v.begin(), v.end());
return res;
}
inline void Yes(bool b = true) {
std::println("{}", (b ? "Yes" : "No"));
}
inline void No() {
std::println("No");
}
#ifdef LOCAL
#include <utility/debug.hpp>
#else
#define debug(...)
#endif
#include <algorithm>
#include <vector>
template <typename T>
struct Imos2D {
int h, w;
std::vector<std::vector<T>> data;
Imos2D(int h, int w) : h(h), w(w), data(h + 2, std::vector<T>(w + 2, 0)) {}
void add(int y1, int x1, int y2, int x2, T val = T(1)) {
y1 = std::clamp(y1, 0, h);
x1 = std::clamp(x1, 0, w);
y2 = std::clamp(y2, 0, h);
x2 = std::clamp(x2, 0, w);
if (y1 >= y2 || x1 >= x2) return;
data[y1][x1] += val;
data[y1][x2] -= val;
data[y2][x1] -= val;
data[y2][x2] += val;
}
void add_inclusive(int u, int d, int l, int r, T val = T(1)) {
if (h <= 0 || w <= 0) return;
u = std::clamp(u, 0, h - 1);
d = std::clamp(d, 0, h - 1);
l = std::clamp(l, 0, w - 1);
r = std::clamp(r, 0, w - 1);
if (u > d || l > r) return;
add(u, l, d + 1, r + 1, val);
}
void add_rect_udlr(int u, int d, int l, int r, T val = T(1)) { add_inclusive(u, d, l, r, val); }
void add_rect(int u, int d, int l, int r, T val = T(1)) { add_rect_udlr(u, d, l, r, val); }
void build() {
for (int y = 0; y <= h; ++y) {
for (int x = 1; x <= w; ++x) {
data[y][x] += data[y][x - 1];
}
}
for (int x = 0; x <= w; ++x) {
for (int y = 1; y <= h; ++y) {
data[y][x] += data[y - 1][x];
}
}
}
T get(int y, int x) const {
if (y < 0 || y >= h || x < 0 || x >= w) return T(0);
return data[y][x];
}
};
template <typename T>
struct PrefixSum2D {
int h, w;
std::vector<std::vector<T>> pre;
PrefixSum2D(int h, int w) : h(h), w(w), pre(h + 1, std::vector<T>(w + 1, 0)) {}
void set(int y, int x, T val) {
if (y >= 0 && y < h && x >= 0 && x < w) {
pre[y + 1][x + 1] = val;
}
}
void build() {
for (int i = 0; i <= h; ++i) {
for (int j = 0; j < w; ++j) {
pre[i][j + 1] += pre[i][j];
}
}
for (int j = 0; j <= w; ++j) {
for (int i = 0; i < h; ++i) {
pre[i + 1][j] += pre[i][j];
}
}
}
T sum_half(int y1, int x1, int y2, int x2) const {
y1 = std::clamp(y1, 0, h);
x1 = std::clamp(x1, 0, w);
y2 = std::clamp(y2, 0, h);
x2 = std::clamp(x2, 0, w);
if (y1 >= y2 || x1 >= x2) return T(0);
return pre[y2][x2] - pre[y1][x2] - pre[y2][x1] + pre[y1][x1];
}
T sum(int u, int d, int l, int r) const {
if (h <= 0 || w <= 0) return T(0);
u = std::clamp(u, 0, h - 1);
d = std::clamp(d, 0, h - 1);
l = std::clamp(l, 0, w - 1);
r = std::clamp(r, 0, w - 1);
if (u > d || l > r) return T(0);
return sum_half(u, l, d + 1, r + 1);
}
};
void solve() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
int H, W, N;
read(H, W, N);
Imos2D<long> imos(H, W);
for (int i = 0; i < N; i++) {
int r1, c1, r2, c2;
read(r1, c1, r2, c2);
r1--, c1--;
imos.add(r1, c1, r2, c2, 1);
}
imos.build();
int ans = 0;
for (int i = 0; i < H; i++) {
for (int j = 0; j < W; j++) {
print(cerr, "{} ", imos.get(i, j));
ans += (imos.get(i, j) == 0);
}
println(cerr, "{}", "");
}
println("{}", ans);
}
int main() {
solve();
}
秋ナス🍆