답안 #197583

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
197583 2020-01-21T19:52:10 Z stefdasca Watering can (POI13_kon) C++14
40 / 100
4000 ms 9208 KB
#include<bits/stdc++.h>
#include "koninc.h"
using namespace std;

const int MAXN = 300001, rad = 300;

int N, K, v[MAXN+5];

int buk[MAXN+5], L[1002], R[1002], ad[1002], nrbuk, aans[1002];

int srt[1002][1002];


int solve(int bk)
{
    if(srt[bk][R[bk] - L[bk]] + ad[bk] < K)
        return 0;
    int st = 0;
    int dr = R[bk] - L[bk];
    int ans = dr;
    while(st <= dr)
    {
        int mid = (st + dr) / 2;
        if(srt[bk][mid] + ad[bk] >= K)
            ans = mid, dr = mid - 1;
        else
            st = mid + 1;
    }
    return (R[bk] - L[bk]) - ans + 1;
}


void proc(int bk)
{
    for(int j = L[bk]; j <= R[bk]; ++j)
    {
        v[j] += ad[bk];
        srt[bk][j - L[bk]] = v[j];
    }
    ad[bk] = 0;
    sort(srt[bk], srt[bk] + R[bk] - L[bk] + 1);
    aans[bk] = solve(bk);
}

void inicjuj(int n, int k, int *D)
{
    N = n, K = k;
    for(int i = 0; i < n; ++i)
        v[i] = D[i];
    for(int i = 0; i < n; ++i)
    {
        if(i % rad == 0)
            ++nrbuk, L[nrbuk] = i;
        R[nrbuk] = i;
        buk[i] = nrbuk;
    }
    for(int i = 0; i <= nrbuk; ++i)
        proc(i);
}

void podlej(int a, int b)
{
    int fini = R[buk[a]];
    while(a <= b && a <= fini)
    {
        ++v[a];
        ++a;
    }
    proc(buk[a]);
    while(a < N && R[buk[a]] <= b)
        ++ad[buk[a]], aans[buk[a]] = solve(buk[a]), a = R[buk[a]] + 1;
    if(a <= b)
    {
        fini = R[buk[a]];
        while(a <= b && a <= fini)
        {
            ++v[a];
            ++a;
        }
        proc(buk[a]);
    }
}

int dojrzale(int a, int b)
{
    int fini = R[buk[a]];
    int ans = 0;
  //  cout << a << " " << fini << '\n';
    proc(buk[a]);
    while(a <= b && a <= fini)
    {
        if(v[a] >= K)
            ++ans;
        ++a;
    }
   // cout << "RC " << a << " " << ans << '\n';
    while(a < N && R[buk[a]] <= b)
        ans += aans[buk[a]], a = R[buk[a]] + 1;
   // cout << "RC " << a << " " << ans << '\n';
    if(a <= b)
    {
        proc(buk[a]);
        fini = R[buk[a]];
        while(a <= b && a <= fini)
        {
            if(v[a] >= K)
                ++ans;
            ++a;
        }
    }
    return ans;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 2 ms 376 KB Output is correct
2 Correct 2 ms 376 KB Output is correct
3 Correct 2 ms 376 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 17 ms 376 KB Output is correct
2 Correct 41 ms 376 KB Output is correct
3 Correct 2 ms 376 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 1234 ms 1508 KB Output is correct
2 Correct 1179 ms 1172 KB Output is correct
3 Correct 310 ms 1144 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 1688 ms 1656 KB Output is correct
2 Correct 1931 ms 1708 KB Output is correct
3 Correct 437 ms 1656 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2322 ms 3112 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 4041 ms 5388 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 4029 ms 5620 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 4027 ms 6884 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 4086 ms 9208 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 4030 ms 8320 KB Time limit exceeded
2 Halted 0 ms 0 KB -