結果

問題 No.1074 増殖
ユーザー carrot46carrot46
提出日時 2020-06-05 22:51:00
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,729 bytes
コンパイル時間 1,671 ms
コンパイル使用メモリ 184,388 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-09 22:33:39
合計ジャッジ時間 4,315 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 WA -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 112 ms
6,944 KB
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <iomanip>
using namespace std;
#define reps(i,s,n) for(int i = s; i < n; i++)
#define rep(i,n) reps(i,0,n)
#define Rreps(i,n,e) for(int i = n - 1; i >= e; --i)
#define Rrep(i,n) Rreps(i,n,0)
#define ALL(a) a.begin(), a.end()
#define fi first
#define se second
typedef long long ll;
typedef vector<ll> vec;
typedef vector<vec> mat;

ll N,M,H,W,Q,K,A,B;
string S;
const ll MOD = 998244353;
//const ll MOD = (1e+9) + 7;
typedef pair<ll, ll> P;
const ll INF = (1LL<<62);

void solve(vec &res, vec x, vec y){
    const int max_x = 20005;
    set<P> pts;
    pts.emplace(0, N);
    pts.emplace(max_x, N + 1);
    x.push_back(0);
    x.push_back(max_x);
    y.push_back(max_x);
    y.push_back(0);
    rep(i,N){
        auto ite = lower_bound(ALL(pts), P(x[i] + 1, -1));
        if(y[ite->se] >= y[i]) continue;
        bool flag = y[ite->se] > y[i];
        while(y[ite->se] <= y[i]){
            ll last_id = ite->se;
            --ite;
            if((x[ite->se] == x[i] || y[last_id] == y[i]) && y[ite->se] >= y[i]) {
                flag = true;
                break;
            }
            res[i] += (min(x[i], x[last_id]) - x[ite->se]) * (y[i] - y[last_id]);
            if(y[ite->se] <= y[i]) pts.erase(P(x[last_id], last_id));
        }
        if(!flag) pts.emplace(x[i], i);
    }
}

int main() {
    cin>>N;
    mat x(2, vec(N)), y(2, vec(N));
    vec res(N, 0);
    rep(i,N){
        rep(j,2) cin>>x[j][i]>>y[j][i];
        x[0][i] *= -1;
        y[0][i] *= -1;
    }
    rep(i,2) rep(j,2) {
        solve(res, x[i], y[j]);
        /*
            rep(k,N){
                cout<<res[k]<<' ';
            }
            cout<<endl;
            */
    }
    rep(i,N) cout<<res[i]<<endl;
}
0