# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
139410 | 2019-07-31T16:17:04 Z | Boxworld | Sails (IOI07_sails) | C++14 | 1000 ms | 2592 KB |
#include <bits/stdc++.h> using namespace std; const int N=100010; pair<int,int> a[N]; int s[N],L[N]; int main(){ int n,tmp=0,MX=0; scanf("%d",&n); for (int i=0;i<n;i++)scanf("%d%d",&a[i].first,&a[i].second); sort(a,a+n); for (int i=0;i<n;i++){ s[0]+=a[i].first-tmp; int cnt=a[i].second; for (int j=0;j<=MX;j++) if (cnt>s[j]){ L[j+1]=s[j]; cnt-=s[j]; s[j]=0; }else{ L[j+1]=cnt; s[j]-=cnt; cnt=0; break; } if (L[MX+1]>0)MX++; for (int j=0;j<=MX;j++)s[j]+=L[j],L[j]=0; tmp=a[i].first; } long long ans=0; for (int i=0;i<=a[n-1].first;i++)ans+=s[i]*i*(i-1)/2; printf("%lld\n",ans); return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 376 KB | Output is correct |
2 | Incorrect | 2 ms | 376 KB | Output isn't correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 376 KB | Output is correct |
2 | Correct | 2 ms | 376 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 256 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 376 KB | Output is correct |
2 | Correct | 2 ms | 376 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 5 ms | 376 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 26 ms | 504 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1025 ms | 1332 KB | Time limit exceeded |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 833 ms | 1504 KB | Output isn't correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1010 ms | 2156 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1059 ms | 2368 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1047 ms | 2592 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |