# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1010951 | 2024-06-29T15:01:43 Z | doducanh | Sails (IOI07_sails) | C++14 | 1000 ms | 3668 KB |
#include <bits/stdc++.h> using namespace std; #define int long long #define h first #define k second const int maxn=1e5; pair<int,int>a[maxn+7]; int dem[maxn+7]; int n; main() { cin>>n; for(int i=1;i<=n;i++)cin>>a[i].h>>a[i].k; sort(a+1,a+n+1); for(int i=1;i<=n;i++){ int k=a[i].k; int h=a[i].h; int pos=h-k; int l=pos,r=pos; while(l>1&&dem[l-1]==dem[pos])l--; while(r<h&&dem[r+1]==dem[pos])r++; for(int j=r+1;j<=h;j++)dem[j]++; for(int j=l;j<=l+(k-(h-r)-1);j++)dem[j]++; } int ans=0; for(int i=1;i<=maxn;i++)ans+=1ll*dem[i]*(dem[i]-1)/2; cout<<ans; return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 352 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 352 KB | Output is correct |
2 | Correct | 0 ms | 348 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 348 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 348 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 4 ms | 348 KB | Output is correct |
2 | Correct | 15 ms | 1220 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 87 ms | 856 KB | Output is correct |
2 | Correct | 51 ms | 1112 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 184 ms | 1296 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 488 ms | 2168 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1018 ms | 3180 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1067 ms | 3224 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1051 ms | 3668 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |