# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
232925 | 2020-05-18T16:45:18 Z | thebes | Sparklers (JOI17_sparklers) | C++14 | 5 ms | 384 KB |
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<int,int> pii; typedef pair<double,double> pdd; typedef vector<int> vi; #define F first #define S second #define pb push_back const int MN = 1005; int N, K, T, i, j, lo, hi, mid, arr[MN]; long double a[MN]; pii opt; int main(){ scanf("%d%d%d",&N,&K,&T); for(i=1;i<=N;i++) scanf("%d",&arr[i]); if(arr[N]==0){ printf("0\n"); return 0; } lo = 1, hi = 1e9; while(lo<hi){ mid = (lo+hi)>>1; opt={K,K}; a[K]=arr[K]-(long double)2*mid*K*T; for(i=1;i<=N;i++){ a[i]=(long double)arr[i]-(long double)2*mid*i*T; if(i<K&&a[i]>a[opt.F]) opt.F=i; if(i>K&&a[i]<a[opt.S]) opt.S=i; } int l=K, r=K, c=0, mx, fl = 0; while(1){ mx = -1; while(r+1<=opt.S&&a[r+1]<=a[l]){ mx=(mx==-1)?r+1:((a[mx]>a[r+1])?r+1:mx); r++; } if(mx!=-1){ r = mx; continue; } mx = -1; while(l-1>=opt.F&&a[r]<=a[l-1]){ mx=(mx==-1)?l-1:((a[mx]<a[l-1])?l-1:mx); l--; } if(mx!=-1){ l = mx; continue; } break; } if(l!=opt.F||r!=opt.S) fl=1; l=1, r=N; while(1){ mx = -1; while(r-1>=opt.S&&a[r-1]<=a[l]){ mx=(mx==-1)?r-1:((a[mx]>a[r-1])?r-1:mx); r--; } if(mx!=-1){ r = mx; continue; } mx = -1; while(l+1<=opt.F&&a[r]<=a[l+1]){ mx=(mx==-1)?l+1:((a[mx]<a[l+1])?l+1:mx); l++; } if(mx!=-1){ l = mx; continue; } break; } if(l!=opt.F||r!=opt.S) fl=1; if(a[1]<a[N]) fl=1; if(fl) lo=mid+1; else hi=mid; } printf("%d\n",lo); return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 5 ms | 256 KB | Output is correct |
2 | Correct | 4 ms | 256 KB | Output is correct |
3 | Correct | 5 ms | 384 KB | Output is correct |
4 | Correct | 4 ms | 384 KB | Output is correct |
5 | Correct | 4 ms | 384 KB | Output is correct |
6 | Correct | 5 ms | 384 KB | Output is correct |
7 | Correct | 4 ms | 384 KB | Output is correct |
8 | Correct | 4 ms | 384 KB | Output is correct |
9 | Correct | 4 ms | 384 KB | Output is correct |
10 | Incorrect | 5 ms | 256 KB | Output isn't correct |
11 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 5 ms | 256 KB | Output is correct |
2 | Correct | 4 ms | 256 KB | Output is correct |
3 | Correct | 5 ms | 384 KB | Output is correct |
4 | Correct | 4 ms | 384 KB | Output is correct |
5 | Correct | 4 ms | 384 KB | Output is correct |
6 | Correct | 5 ms | 384 KB | Output is correct |
7 | Correct | 4 ms | 384 KB | Output is correct |
8 | Correct | 4 ms | 384 KB | Output is correct |
9 | Correct | 4 ms | 384 KB | Output is correct |
10 | Incorrect | 5 ms | 256 KB | Output isn't correct |
11 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 5 ms | 256 KB | Output is correct |
2 | Correct | 4 ms | 256 KB | Output is correct |
3 | Correct | 5 ms | 384 KB | Output is correct |
4 | Correct | 4 ms | 384 KB | Output is correct |
5 | Correct | 4 ms | 384 KB | Output is correct |
6 | Correct | 5 ms | 384 KB | Output is correct |
7 | Correct | 4 ms | 384 KB | Output is correct |
8 | Correct | 4 ms | 384 KB | Output is correct |
9 | Correct | 4 ms | 384 KB | Output is correct |
10 | Incorrect | 5 ms | 256 KB | Output isn't correct |
11 | Halted | 0 ms | 0 KB | - |