# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
1023944 |
2024-07-15T09:54:11 Z |
lucri |
Sails (IOI07_sails) |
C++17 |
|
1000 ms |
3540 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<int,int>>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()
{
ios_base::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
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 |
0 ms |
344 KB |
Output is correct |
2 |
Correct |
1 ms |
348 KB |
Output is correct |
# |
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 |
344 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
344 KB |
Output is correct |
2 |
Correct |
2 ms |
348 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
13 ms |
348 KB |
Output is correct |
2 |
Correct |
1 ms |
348 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
135 ms |
580 KB |
Output is correct |
2 |
Correct |
504 ms |
932 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1038 ms |
1108 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1044 ms |
1264 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
55 ms |
3540 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1038 ms |
1916 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1035 ms |
1880 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |