#include <bits/stdc++.h>
using namespace std;
long long n,hmax;
long long ans;
struct barci{long long h,w;}v[100010];
stack<pair<long long,long long>>s,ss;
bool comp(barci a,barci b)
{
return a.h<b.h;
}
void adauga(long long cost,long long length)
{
if(!s.empty()&&cost==s.top().first)
{
length+=s.top().second;
s.pop();
}
s.push({cost,length});
}
int main()
{
cin>>n;
for(long long i=1;i<=n;++i)
cin>>v[i].h>>v[i].w;
sort(v+1,v+n+1,comp);
for(long long i=1;i<=n;++i)
{
if(v[i].h!=hmax)
{
adauga(0,v[i].h-hmax);
hmax=v[i].h;
}
while(v[i].w)
{
if(v[i].w>=s.top().second)
{
ss.push({s.top().first+1,s.top().second});
ans+=s.top().first*s.top().second;
v[i].w-=s.top().second;
s.pop();
}
else
{
ans+=v[i].w*s.top().first;
ss.push({s.top().first,s.top().second-v[i].w});
ss.push({s.top().first+1,v[i].w});
v[i].w=0;
s.pop();
}
}
while(!ss.empty())
{
adauga(ss.top().first,ss.top().second);
ss.pop();
}
}
cout<<ans;
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Correct |
1 ms |
348 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
448 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
1 ms |
348 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
14 ms |
492 KB |
Output is correct |
2 |
Correct |
1 ms |
472 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
149 ms |
604 KB |
Output is correct |
2 |
Correct |
558 ms |
1116 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1058 ms |
1320 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1053 ms |
2044 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1018 ms |
2512 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1027 ms |
2880 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1063 ms |
3164 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |