이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "gap.h"
using namespace std;
long long findGap(int T, int n)
{
switch (T)
{
case 1:
{
long long a, b, x, y, max_d = 0;
MinMax(0, 1e18, &a, &b);
size_t num_examined = 2;
if (num_examined == n)
max_d = max(max_d, b - a);
while (num_examined < n)
{
if (num_examined == n - 1)
{
MinMax(a + 1, b, &x, &y);
num_examined++;
}
else
{
MinMax(a + 1, b - 1, &x, &y);
num_examined += 2;
}
max_d = max(max_d, max(x - a, b - y));
a = x;
b = y;
if (num_examined == n)
max_d = max(max_d, y - x);
}
return max_d;
}
case 2:
{
return 0;
}
}
}
컴파일 시 표준 에러 (stderr) 메시지
gap.cpp: In function 'long long int findGap(int, int)':
gap.cpp:15:26: warning: comparison of integer expressions of different signedness: 'size_t' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
15 | if (num_examined == n)
| ~~~~~~~~~~~~~^~~~
gap.cpp:18:29: warning: comparison of integer expressions of different signedness: 'size_t' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
18 | while (num_examined < n)
| ~~~~~~~~~~~~~^~~
gap.cpp:20:30: warning: comparison of integer expressions of different signedness: 'size_t' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
20 | if (num_examined == n - 1)
| ~~~~~~~~~~~~~^~~~~~~~
gap.cpp:36:30: warning: comparison of integer expressions of different signedness: 'size_t' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
36 | if (num_examined == n)
| ~~~~~~~~~~~~~^~~~
gap.cpp:47:1: warning: control reaches end of non-void function [-Wreturn-type]
47 | }
| ^
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |