結果

問題 No.1074 増殖
ユーザー SSRSSSRS
提出日時 2020-06-05 22:08:58
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,172 bytes
コンパイル時間 2,631 ms
コンパイル使用メモリ 182,976 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-09 21:29:01
合計ジャッジ時間 7,811 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 99 ms
5,376 KB
testcase_07 TLE -
testcase_08 AC 748 ms
5,376 KB
testcase_09 AC 104 ms
5,376 KB
testcase_10 AC 104 ms
5,376 KB
testcase_11 AC 102 ms
5,376 KB
testcase_12 AC 104 ms
5,376 KB
testcase_13 AC 128 ms
5,376 KB
testcase_14 AC 130 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#include <bits/stdc++.h>
using namespace std;
int main(){
  int N;
  cin >> N;
  vector<int> Xa(N), Ya(N), Xb(N), Yb(N);
  for (int i = 0; i < N; i++){
    cin >> Xa[i] >> Ya[i] >> Xb[i] >> Yb[i];
    Ya[i] += 20000;
    Yb[i] += 20000;
  }
  vector<int> left(40000, 0), right(40000, 0);
  for (int i = 0; i < N; i++){
    long long ans = 0;
    for (int j = Ya[i]; j < Yb[i]; j++){
      bool update = false;
      if (left[j] > Xa[i]){
        ans += left[j] - Xa[i];
        left[j] = Xa[i];
        update = true;
      }
      if (right[j] < Xb[i]){
        ans += Xb[i] - right[j];
        right[j] = Xb[i];
        update = true;
      }
      if (!update){
        break;
      }
    }
    for (int j = Yb[i] - 1; j >= Ya[i]; j--){
      bool update = false;
      if (left[j] > Xa[i]){
        ans += left[j] - Xa[i];
        left[j] = Xa[i];
        update = true;
      }
      if (right[j] < Xb[i]){
        ans += Xb[i] - right[j];
        right[j] = Xb[i];
        update = true;
      }
      if (!update){
        break;
      }
    }
    cout << ans << endl;
  }
}
0