답안 #1024058

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1024058 2024-07-15T10:51:43 Z lucri Sails (IOI07_sails) C++
80 / 100
1000 ms 2640 KB
#include <iostream>
#include <algorithm>
using namespace std;
int n,hmax,cost,length;
long long ans;
int lss,ls,h,w;
pair<int,int>v[100010],ss[100010],s[100010];
int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
    cin>>n;
    for(int i=1;i<=n;++i)
        cin>>v[i].first>>v[i].second;
    sort(v+1,v+n+1);
    for(int i=1;i<=n;++i)
    {
        h=v[i].first;
        w=v[i].second;
        if(h>hmax)
        {
            cost=0;
            length=h-hmax;
            if(ls&&cost==s[ls].first)
            {
                length+=s[ls].second;
                --ls;
            }
            s[++ls]={cost,length};
            hmax=h;
        }
        while(w)
        {
            if(w>=s[ls].second)
            {
                ss[++lss]={s[ls].first+1,s[ls].second};
                ans+=1LL*s[ls].first*s[ls].second;
                w-=s[ls].second;
                --ls;
            }
            else
            {
                ans+=1LL*w*s[ls].first;
                ss[++lss]={s[ls].first,s[ls].second-w};
                ss[++lss]={s[ls].first+1,w};
                w=0;
                --ls;
            }
        }
        cost=ss[lss].first;
        length=ss[lss].second;
        if(ls&&cost==s[ls].first)
        {
            length+=s[ls].second;
            --ls;
        }
        s[++ls]={cost,length};
        --lss;
        if(lss)
        {
            cost=ss[lss].first;
            length=ss[lss].second;
            if(ls&&cost==s[ls].first)
            {
                length+=s[ls].second;
                --ls;
            }
            s[++ls]={cost,length};
            --lss;
            if(lss)
            {
                cost=ss[lss].first;
                length=ss[lss].second;
                if(ls&&cost==s[ls].first)
                {
                    length+=s[ls].second;
                    --ls;
                }
                s[++ls]={cost,length};
                --lss;
                while(lss)
                {
                    s[++ls]={ss[lss].first,ss[lss].second};
                    --lss;
                }
            }
        }
    }
    cout<<ans;
    return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 2396 KB Output is correct
2 Correct 1 ms 2396 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 2396 KB Output is correct
2 Correct 0 ms 2396 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 2396 KB Output is correct
2 Correct 0 ms 2396 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 2392 KB Output is correct
2 Correct 1 ms 2396 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 2 ms 2396 KB Output is correct
2 Correct 1 ms 2396 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 17 ms 2396 KB Output is correct
2 Correct 58 ms 2520 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 732 ms 2640 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 434 ms 2512 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 324 ms 2396 KB Output is correct
2 Correct 583 ms 2516 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1065 ms 2552 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1050 ms 2628 KB Time limit exceeded
2 Halted 0 ms 0 KB -