結果

問題 No.60 魔法少女
コンテスト
ユーザー firiexp
提出日時 2019-10-23 23:27:14
言語 C++17(gcc12)
(gcc 12.4.0 + boost 1.89.0)
コンパイル:
g++-12 -O2 -lm -std=c++17 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
CE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,409 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 811 ms
コンパイル使用メモリ 102,192 KB
最終ジャッジ日時 2026-03-08 21:44:58
合計ジャッジ時間 1,647 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。

コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:26:30: error: no match for ‘operator[]’ (operand types are ‘__gnu_cxx::__alloc_traits<std::allocator<std::array<int, 3> >, std::array<int, 3> >::value_type’ {aka ‘std::array<int, 3>’} and ‘int’)
   26 |             scanf("%d", &E[i][j]);
      |                              ^
main.cpp:28:13: error: no match for ‘operator[]’ (operand types are ‘__gnu_cxx::__alloc_traits<std::allocator<std::array<int, 3> >, std::array<int, 3> >::value_type’ {aka ‘std::array<int, 3>’} and ‘int’)
   28 |         E[i][0] += 500; E[i][1] += 500;
      |             ^
main.cpp:28:29: error: no match for ‘operator[]’ (operand types are ‘__gnu_cxx::__alloc_traits<std::allocator<std::array<int, 3> >, std::array<int, 3> >::value_type’ {aka ‘std::array<int, 3>’} and ‘int’)
   28 |         E[i][0] += 500; E[i][1] += 500;
      |                             ^
main.cpp:54:29: error: no match for ‘operator[]’ (operand types are ‘__gnu_cxx::__alloc_traits<std::allocator<std::array<int, 3> >, std::array<int, 3> >::value_type’ {aka ‘std::array<int, 3>’} and ‘int’)
   54 |         ans += max(0LL, E[i][2]-grid[E[i][0]][E[i][1]]);
      |                             ^
main.cpp:54:42: error: no match for ‘operator[]’ (operand types are ‘__gnu_cxx::__alloc_traits<std::allocator<std::array<int, 3> >, std::array<int, 3> >::value_type’ {aka ‘std::array<int, 3>’} and ‘int’)
   54 |         ans += max(0LL, E[i][2]-grid[E[i][0]][E[i][1]]);
      |                                          ^
main.cpp:54:51: error: no match for ‘operator[]’ (operand types are ‘__gnu_cxx::__alloc_traits<std::allocator<std::array<int, 3> >, std::array<int, 3> >::value_type’ {aka ‘std::array<int, 3>’} and ‘int’)
   54 |         ans += max(0LL, E[i][2]-grid[E[i][0]][E[i][1]]);
      |                                                   ^
In file included from /usr/include/c++/12/vector:64,
     

ソースコード

diff #
raw source code

#include <iostream>
#include <algorithm>
#include <iomanip>
#include <map>
#include <set>
#include <queue>
#include <stack>
#include <numeric>
#include <bitset>
#include <cmath>

static const int MOD = 1000000007;
using ll = long long;
using u32 = uint32_t;
using namespace std;

template<class T> constexpr T INF = ::numeric_limits<T>::max()/32*15+208;

ll grid[1010][1010];
int main() {
    int n, k;
    cin >> n >> k;
    vector<array<int, 3>> E(n);
    for (int i = 0; i < n; ++i) {
        for (int j = 0; j < 3; ++j) {
            scanf("%d", &E[i][j]);
        }
        E[i][0] += 500; E[i][1] += 500;
    }
    for (auto &&i : grid) {
        fill_n(i,1010, 0LL);
    }
    for (int i = 0; i < k; ++i) {
        int x, y, w, h, d;
        scanf("%d %d %d %d %d", &x, &y, &w, &h, &d);
        x += 500; y += 500;
        grid[x][y] += d;
        grid[min(1009, x+w+1)][min(1009, y+h+1)] += d;
        grid[x][min(1009, y+h+1)] -= d;
        grid[min(1009, x+w+1)][y] -= d;
    }
    for (int i = 1; i < 1010; ++i) {
        for (int j = 0; j < 1010; ++j) {
            grid[i][j] += grid[i-1][j];
        }
    }
    for (int i = 0; i < 1010; ++i) {
        for (int j = 1; j < 1010; ++j) {
            grid[i][j] += grid[i][j-1];
        }
    }
    ll ans = 0;
    for (int i = 0; i < n; ++i) {
        ans += max(0LL, E[i][2]-grid[E[i][0]][E[i][1]]);
    }
    cout << ans << "\n";
    return 0;
}
0