結果
問題 | No.60 魔法少女 |
ユーザー | 0w1 |
提出日時 | 2016-12-06 17:36:34 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 127 ms / 5,000 ms |
コード長 | 2,305 bytes |
コンパイル時間 | 1,534 ms |
コンパイル使用メモリ | 174,896 KB |
実行使用メモリ | 10,368 KB |
最終ジャッジ日時 | 2024-11-28 03:09:56 |
合計ジャッジ時間 | 3,241 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 21 ms
7,296 KB |
testcase_01 | AC | 22 ms
7,296 KB |
testcase_02 | AC | 22 ms
7,296 KB |
testcase_03 | AC | 22 ms
7,296 KB |
testcase_04 | AC | 77 ms
8,832 KB |
testcase_05 | AC | 85 ms
8,832 KB |
testcase_06 | AC | 127 ms
10,240 KB |
testcase_07 | AC | 98 ms
9,472 KB |
testcase_08 | AC | 72 ms
8,576 KB |
testcase_09 | AC | 43 ms
7,936 KB |
testcase_10 | AC | 117 ms
10,112 KB |
testcase_11 | AC | 32 ms
7,552 KB |
testcase_12 | AC | 65 ms
8,448 KB |
testcase_13 | AC | 123 ms
10,368 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef pair< int, int > pii; typedef vector< int > vi; typedef vector< vi > vvi; typedef vector< ll > vl; typedef vector< vl > vvl; typedef vector< pii > vp; typedef vector< vp > vvp; typedef vector< string > vs; typedef vector< double > vd; typedef vector< vd > vvd; template< class T1, class T2 > int upmin( T1 &x, T2 v ){ if( x > v ){ x = v; return 1; } return 0; } template< class T1, class T2 > int upmax( T1 &x, T2 v ){ if( x < v ){ x = v; return 1; } return 0; } const int INF = 0x3f3f3f3f; int N, K; vi X, Y, HP; vi AX, AY, W, H, D; void init(){ cin >> N >> K; X = Y = HP = vi( N ); for( int i = 0; i < N; ++i ) cin >> X[ i ] >> Y[ i ] >> HP[ i ]; AX = AY = W = H = D = vi( K ); for( int i = 0; i < K; ++i ) cin >> AX[ i ] >> AY[ i ] >> W[ i ] >> H[ i ] >> D[ i ]; } struct BIT2{ vvi dat; BIT2( int n, int m ){ dat = vvi( n, vi( m ) ); } void add( int x, int y, int v ){ for( int i = x; i < dat.size(); i += i & -i ) for( int j = y; j < dat[ i ].size(); j += j & -j ) dat[ i ][ j ] += v; } int sum( int x, int y ){ int res = 0; for( int i = x; i > 0; i -= i & -i ) for( int j = y; j > 0; j -= j & -j ) res += dat[ i ][ j ]; return res; } }; BIT2 *bit2; void preprocess(){ bit2 = new BIT2( 1001 + 1, 1001 + 1 ); for( int i = 0; i < N; ++i ) bit2->add( X[ i ] + 501, Y[ i ] + 501, HP[ i ] ), bit2->add( X[ i ] + 501 + 1, Y[ i ] + 501, -HP[ i ] ), bit2->add( X[ i ] + 501, Y[ i ] + 501 + 1, -HP[ i ] ), bit2->add( X[ i ] + 501 + 1, Y[ i ] + 501 + 1, HP[ i ] ); for( int i = 0; i < K; ++i ) bit2->add( AX[ i ] + 501, AY[ i ] + 501, -D[ i ] ), bit2->add( AX[ i ] + 501 + W[ i ] + 1, AY[ i ] + 501, D[ i ] ), bit2->add( AX[ i ] + 501, AY[ i ] + 501 + H[ i ] + 1, D[ i ] ), bit2->add( AX[ i ] + 501 + W[ i ] + 1, AY[ i ] + 501 + H[ i ] + 1, -D[ i ] ); } void solve(){ int ans = 0; for( int i = -500 + 501; i <= 500 + 501; ++i ) for( int j = -500 + 501; j <= 500 + 501; ++j ){ int v = bit2->sum( i, j ); if( v > 0 ) ans += v; } cout << ans << endl; } signed main(){ ios::sync_with_stdio( 0 ); init(); preprocess(); solve(); return 0; }