답안 #588123

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
588123 2022-07-02T17:49:03 Z Bench0310 Pyramid Base (IOI08_pyramid_base) C++17
70 / 100
5000 ms 106852 KB
#include <bits/stdc++.h>

using namespace std;
typedef long long ll;

const int N=1000005;
ll tree[4*N];
ll lazy[4*N];

void pull(int idx){tree[idx]=min(tree[2*idx],tree[2*idx+1]);}
void apply(int idx,ll x){tree[idx]+=x; lazy[idx]+=x;}
void push(int idx){for(int i=0;i<2;i++)apply(2*idx+i,lazy[idx]); lazy[idx]=0;}

void update(int idx,int l,int r,int ql,int qr,int x)
{
    if(ql>qr) return;
    if(l==ql&&r==qr) apply(idx,ll(x));
    else
    {
        int m=(l+r)/2;
        push(idx);
        update(2*idx,l,m,ql,min(qr,m),x);
        update(2*idx+1,m+1,r,max(ql,m+1),qr,x);
        pull(idx);
    }
}

int main()
{
    ios::sync_with_stdio(0);
    cin.tie(0);
    int n,m;
    cin >> m >> n;
    int b,p;
    cin >> b >> p;
    vector<array<int,5>> obstacles(p);
    for(auto &[x1,y1,x2,y2,c]:obstacles) cin >> x1 >> y1 >> x2 >> y2 >> c;
    int l=0,r=min(n,m)+1;
    vector<array<int,3>> v[m+2];
    while(l<r-1)
    {
        int len=(l+r)/2;
        bool ok=0;
        int limm=m-len+1;
        int limn=n-len+1;
        auto add=[&](int x1,int y1,int x2,int y2,int c)
        {
            v[x1].push_back({y1,y2,c});
            v[x2+1].push_back({y1,y2,-c});
        };
        for(auto [x1,y1,x2,y2,c]:obstacles) add(max(1,x1-len+1),max(1,y1-len+1),min(x2,limm),min(y2,limn),c);
        for(int x=1;x<=limm+1;x++)
        {
            for(auto [y1,y2,c]:v[x]) update(1,1,limn,y1,y2,c);
            if(x<=limm) ok|=(tree[1]<=b);
            v[x].clear();
        }
        if(ok) l=len;
        else r=len;
    }
    cout << l << "\n";
    return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 340 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 340 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 4 ms 468 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 12 ms 1236 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 23 ms 7156 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 47 ms 34380 KB Output is correct
2 Correct 115 ms 56796 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 121 ms 56796 KB Output is correct
2 Correct 44 ms 38140 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 8 ms 2132 KB Output is correct
2 Correct 43 ms 1916 KB Output is correct
3 Correct 38 ms 1976 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 223 ms 10572 KB Output is correct
2 Correct 299 ms 10440 KB Output is correct
3 Correct 228 ms 10628 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 365 ms 48140 KB Output is correct
2 Correct 93 ms 28992 KB Output is correct
3 Correct 263 ms 35916 KB Output is correct
4 Correct 732 ms 66732 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 588 ms 67336 KB Output is correct
2 Correct 892 ms 68720 KB Output is correct
3 Correct 162 ms 48240 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 360 ms 51048 KB Output is correct
2 Correct 1149 ms 71184 KB Output is correct
3 Correct 1217 ms 70744 KB Output is correct
4 Correct 1120 ms 71204 KB Output is correct
5 Correct 1199 ms 70996 KB Output is correct
6 Correct 89 ms 49132 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 5049 ms 95428 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 5045 ms 101264 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 5053 ms 106852 KB Time limit exceeded
2 Halted 0 ms 0 KB -