제출 #386638

#제출 시각아이디문제언어결과실행 시간메모리
386638mehrdad_sohrabi선물상자 (IOI15_boxes)C++14
50 / 100
49 ms11756 KiB
/// Black lives matter #include <bits/stdc++.h> #include "boxes.h" /// 500 485 462 A4 using namespace std; typedef long long int ll; typedef complex<double> point; typedef long double ld; #define pb push_back #define pii pair < ll , ll > #define F first #define S second //#define endl '\n' #define int long long #define sync ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0) #pragma GCC optimize("Ofast,no-stack-protector,unroll-loops,fast-math") #define kill(x) return cout<<x<<'\n', 0; const int MAXN=1e5+10; ll dp[MAXN],pd[MAXN]; ll t[MAXN]; long long delivery(int32_t n, int32_t k, int32_t l, int32_t p[]) { for (int i=0;i<=n;i++) dp[i]=(ll)1e15,pd[i]=(ll)1e15; sort(p,p+n); ll cnt=0; dp[0]=0,pd[0]=0; for (int i=0;i<n;i++){ cnt++; dp[cnt]=(ll)min(l,2*p[i])+dp[max((ll)0,cnt-k)]; } cnt=0; for (int i=n-1;i>-1;i--){ cnt++; pd[cnt]=(ll)min(l,2*((l-p[i])))+pd[max((ll)0,cnt-k)]; } ll ans=(ll)1e15; if (k==n) ans=min(ans,(ll)l); ll jav=l; for (int i=0;i<=n;i++){ ans=min(ans,dp[i]+pd[n-i]); } return ans; } /* int32_t p[MAXN]; int32_t main(){ sync; ll n,k,l; cin >> n >> k >> l; for (int i=0;i<n;i++){ cin >> p[i]; } cout << delivery(n,k,l,p); } */ /* 3 2 8 1 2 5 */

컴파일 시 표준 에러 (stderr) 메시지

boxes.cpp: In function 'long long int delivery(int32_t, int32_t, int32_t, int32_t*)':
boxes.cpp:37:8: warning: unused variable 'jav' [-Wunused-variable]
   37 |     ll jav=l;
      |        ^~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...