제출 #339527

#제출 시각아이디문제언어결과실행 시간메모리
339527bigDuck선물상자 (IOI15_boxes)C++14
0 / 100
1 ms384 KiB
#include "boxes.h" #include<bits/stdc++.h> using namespace std; #define INIT ios_base :: sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL);mt19937 rng(chrono::steady_clock::now().time_since_epoch().count()); #define mp make_pair #define pb push_back #define ft first #define sc second #define ll long long #define pii pair<int, int> #define count_bits __builtin_popcount int p1[10000010], p2[10000010]; long long delivery(int N, int K, int L, int p[]) { int mn1=0; int mn2=0; int n=N, k=K, l=L; int ac=k; int cr=0; for(int i=0; i<n; i++){ ac--; if(ac==0){ cr=cr+p[i]*2; p1[i]=cr; ac=k; } else{ p1[i]=cr+p[i]*2; } } cr=0; ac=k; for(int i=n; i>=0; i--){ ac--; if(ac==0){ cr=cr+p[i]*2; p2[i]=cr; ac=k; } else{ p2[i]=cr+p[i]*2; } } int mn=1e18; for(int i=0; i<n; i++){ mn=min(p1[i]+p2[i+1], mn); } for(int i=k-1; i<n; i++){ if( (i-k)>=0 ){ mn=min(p2[i+1]+p1[i-k]+l, mn); } else{ mn=min(p2[i+1]+l, mn); } } return mn; }

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

boxes.cpp: In function 'long long int delivery(int, int, int, int*)':
boxes.cpp:47:12: warning: overflow in conversion from 'double' to 'int' changes value from '1.0e+18' to '2147483647' [-Woverflow]
   47 |     int mn=1e18;
      |            ^~~~
boxes.cpp:20:9: warning: unused variable 'mn1' [-Wunused-variable]
   20 |     int mn1=0;
      |         ^~~
boxes.cpp:21:9: warning: unused variable 'mn2' [-Wunused-variable]
   21 |     int mn2=0;
      |         ^~~
#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...