이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using pii = pair<int, int>;
#define pb push_back
#define ff first
#define ss second
int main(){
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int n, m, d; cin>>n>>m>>d;
vector<int> a;
for (int i = 1; i <= n; i++){
int x; cin>>x;
a.pb(x);
}
if (m <= 10){
while (m--){
int x; cin>>x;
a.pb(x);
sort(a.begin(), a.end());
ll mx = numeric_limits<ll> :: min(), j = -1, out = 0;
for (int i = 0; i < a.size(); i++){
ll v = a[i] - 1LL * i * d;
if (v > mx){
mx = v;
j = i;
}
out = max(out, a[j] - a[i] + 1LL * d * (i - j));
}
cout<<1.0 * out / 2<<" ";
}
return 0;
}
if (n) return 0;
ll mx = numeric_limits<ll> :: min(), j = -1, px = -1, out = 0;
for (int i = 0; i < m; i++){
int x; cin>>x;
ll v = x - 1LL * i * d;
if (v > mx){
mx = v;
j = i;
px = x;
}
out = max(out, px - x + 1LL * d * (i - j));
cout<<1.0 * out / 2<<" ";
}
}
컴파일 시 표준 에러 (stderr) 메시지
Main.cpp: In function 'int main()':
Main.cpp:28:31: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
28 | for (int i = 0; i < a.size(); i++){
| ~~^~~~~~~~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |