# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
1023936 |
2024-07-15T09:48:02 Z |
lucri |
Sails (IOI07_sails) |
C++17 |
|
1000 ms |
2900 KB |
#include <bits/stdc++.h>
using namespace std;
long long n,hmax;
long long ans;
struct barci{int h;long long 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;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
1 ms |
344 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
344 KB |
Output is correct |
2 |
Correct |
1 ms |
344 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
344 KB |
Output is correct |
2 |
Correct |
1 ms |
344 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
14 ms |
348 KB |
Output is correct |
2 |
Correct |
1 ms |
348 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
151 ms |
652 KB |
Output is correct |
2 |
Correct |
577 ms |
1112 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1041 ms |
1352 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1018 ms |
1724 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1068 ms |
2364 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1053 ms |
2900 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1065 ms |
2760 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |