結果
問題 | No.1074 増殖 |
ユーザー | yuji9511 |
提出日時 | 2020-06-05 22:19:47 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,717 bytes |
コンパイル時間 | 1,657 ms |
コンパイル使用メモリ | 167,276 KB |
実行使用メモリ | 10,368 KB |
最終ジャッジ日時 | 2024-05-09 21:54:06 |
合計ジャッジ時間 | 5,596 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,240 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
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 | TLE | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
ソースコード
/*** author: yuji9511 ***/ #include <bits/stdc++.h> using namespace std; using ll = long long; using lpair = pair<ll, ll>; const ll MOD = 1e9+7; const ll INF = 1e18; #define rep(i,m,n) for(ll i=(m);i<(n);i++) #define rrep(i,m,n) for(ll i=(m);i>=(n);i--) #define printa(x,n) for(ll i=0;i<n;i++){cout<<(x[i])<<" \n"[i==n-1];}; void print() {} template <class H,class... T> void print(H&& h, T&&... t){cout<<h<<" \n"[sizeof...(t)==0];print(forward<T>(t)...);} void solve(){ ll N; cin >> N; ll xa[40010], ya[40010], xb[40010], yb[40010]; rep(i,0,N){ cin >> xa[i] >> ya[i] >> xb[i] >> yb[i]; xa[i] *= -1; ya[i] *= -1; } ll ans[40010] = {}; ll cur[20010] = {}; rep(i,0,N){ rep(x,0,xb[i]){ ll v = max(0LL, yb[i] - cur[x]); ans[i] += v; } rep(x,0,xb[i]){ cur[x] = max(cur[x], yb[i]); } } fill(cur, cur+20010, 0); rep(i,0,N){ rep(x,0,xb[i]){ ll v = max(0LL, ya[i] - cur[x]); ans[i] += v; } rep(x,0,xb[i]){ cur[x] = max(cur[x], ya[i]); } } fill(cur, cur+20010, 0); rep(i,0,N){ rep(x,0,xa[i]){ ll v = max(0LL, ya[i] - cur[x]); ans[i] += v; } rep(x,0,xa[i]){ cur[x] = max(cur[x], ya[i]); } } fill(cur, cur+20010, 0); rep(i,0,N){ rep(x,0,xa[i]){ ll v = max(0LL, yb[i] - cur[x]); ans[i] += v; } rep(x,0,xa[i]){ cur[x] = max(cur[x], yb[i]); } } rep(i,0,N) print(ans[i]); } int main(){ cin.tie(0); ios::sync_with_stdio(false); solve(); }