답안 #580591

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
580591 2022-06-21T13:13:57 Z Sam_a17 Gap (APIO16_gap) C++14
30 / 100
50 ms 1868 KB
#define _CRT_SECURE_NO_WARNINGS
#include <bits/stdc++.h>
//#include "temp.cpp"
#include <cstdio>
using namespace std;

#ifndef ONLINE_JUDGE
#define dbg(x) cerr << #x <<" "; print(x); cerr << endl;
#else
#define dbg(x)
#endif

#define sz(x) (int((x).size()))
#define len(x) (int)x.length()
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
#define clr(x) (x).clear()
#define uniq(x) x.resize(unique(all(x)) - x.begin());
#define blt __builtin_popcount

#define pb push_back
#define popf pop_front
#define popb pop_back

void print(long long t) {cerr << t;}
void print(int t) {cerr << t;}
void print(string t) {cerr << t;}
void print(char t) {cerr << t;}
void print(double t) {cerr << t;}
void print(long double t) {cerr << t;}
void print(unsigned long long t) {cerr << t;}

template <class T, class V> void print(pair <T, V> p);
template <class T> void print(vector <T> v);
template <class T> void print(set <T> v);
template <class T, class V> void print(map <T, V> v);
template <class T> void print(multiset <T> v);
template <class T, class V> void print(T v[],V n) {cerr << "["; for(int i = 0; i < n; i++) {print(v[i]); cerr << " "; } cerr << "]";}
template <class T, class V> void print(pair <T, V> p) {cerr << "{"; print(p.first); cerr << ","; print(p.second); cerr << "}";}
template <class T> void print(vector <T> v) {cerr << "[ "; for (T i : v) {print(i); cerr << " ";} cerr << "]";}
template <class T> void print(set <T> v) {cerr << "[ "; for (T i : v) {print(i); cerr << " ";} cerr << "]";}
template <class T> void print(multiset <T> v) {cerr << "[ "; for (T i : v) {print(i); cerr << " ";} cerr << "]";}
template <class T, class V> void print(map <T, V> v) {cerr << "[ "; for (auto i : v) {print(i); cerr << " ";} cerr << "]";}

#include <ext/pb_ds/assoc_container.hpp>
using namespace __gnu_pbds;
#define nl '\n'

// for grid problems
int dx[8] = {-1,0,1,0,1,-1,1,-1};
int dy[8] = {0,1,0,-1,1,1,-1,-1};

// lowest / (1 << 17) >= 1e5 / (1 << 18) >= 2e5 / (1 << 21) >= 1e6
void fastIO() {
  ios_base::sync_with_stdio(false);
  cin.tie(nullptr); cout.tie(nullptr);
}
// file in/out
void setIO(string str = "") {
  fastIO();

  if (str != "") {
    freopen((str + ".in").c_str(), "r", stdin);
    freopen((str + ".out").c_str(), "w", stdout);
  }
}
// Indexed Set
template <class T> using Tree = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>;
const long long inf = 1e18;
#include "gap.h"

long long findGap(int T, int N) {
  if(T == 1) {
    vector<long long> a(N);
    long long mn, mx;

    MinMax(0, inf, &mn, &mx);
    
    a[0] = mn, a[N - 1] = mx;
    long long lstMn = mn, lstMx = mx;
    for(int i = 1; i < N / 2; i++) {
      MinMax(lstMn + 1, lstMx - 1, &mn, &mx);
      a[i] = mn, a[N - i - 1] = mx;
      lstMn = mn, lstMx = mx;
    }

    if(N & 1) {
      int mid = N / 2;
      MinMax(lstMn + 1, max(lstMn + 1, lstMx - 1), &mn, &mx);
      assert(mn == mx);
      a[N / 2] = mn;
    }

    long long answ = 0;
    for(int i = 1; i < N; i++) {
      answ = max(answ, a[i] - a[i - 1]);
    }

    return answ;
  } else {

  }

  return 0;
}

Compilation message

gap.cpp: In function 'long long int findGap(int, int)':
gap.cpp:88:11: warning: unused variable 'mid' [-Wunused-variable]
   88 |       int mid = N / 2;
      |           ^~~
gap.cpp: In function 'void setIO(std::string)':
gap.cpp:63:12: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   63 |     freopen((str + ".in").c_str(), "r", stdin);
      |     ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
gap.cpp:64:12: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
   64 |     freopen((str + ".out").c_str(), "w", stdout);
      |     ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 208 KB Output is correct
2 Correct 0 ms 208 KB Output is correct
3 Correct 0 ms 208 KB Output is correct
4 Correct 1 ms 208 KB Output is correct
5 Correct 0 ms 208 KB Output is correct
6 Correct 0 ms 208 KB Output is correct
7 Correct 0 ms 208 KB Output is correct
8 Correct 0 ms 208 KB Output is correct
9 Correct 0 ms 208 KB Output is correct
10 Correct 0 ms 208 KB Output is correct
11 Correct 2 ms 336 KB Output is correct
12 Correct 1 ms 336 KB Output is correct
13 Correct 1 ms 336 KB Output is correct
14 Correct 1 ms 336 KB Output is correct
15 Correct 1 ms 336 KB Output is correct
16 Correct 10 ms 720 KB Output is correct
17 Correct 9 ms 592 KB Output is correct
18 Correct 9 ms 592 KB Output is correct
19 Correct 9 ms 680 KB Output is correct
20 Correct 8 ms 592 KB Output is correct
21 Correct 47 ms 1812 KB Output is correct
22 Correct 37 ms 1760 KB Output is correct
23 Correct 42 ms 1784 KB Output is correct
24 Correct 41 ms 1812 KB Output is correct
25 Correct 35 ms 1824 KB Output is correct
26 Correct 41 ms 1832 KB Output is correct
27 Correct 39 ms 1868 KB Output is correct
28 Correct 40 ms 1864 KB Output is correct
29 Correct 50 ms 1864 KB Output is correct
30 Correct 34 ms 1836 KB Output is correct
31 Correct 0 ms 208 KB Output is correct
32 Correct 0 ms 208 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 208 KB Output isn't correct
2 Incorrect 1 ms 208 KB Output isn't correct
3 Incorrect 0 ms 208 KB Output isn't correct
4 Incorrect 0 ms 208 KB Output isn't correct
5 Incorrect 0 ms 208 KB Output isn't correct
6 Incorrect 0 ms 208 KB Output isn't correct
7 Incorrect 0 ms 208 KB Output isn't correct
8 Incorrect 1 ms 208 KB Output isn't correct
9 Incorrect 0 ms 208 KB Output isn't correct
10 Incorrect 0 ms 208 KB Output isn't correct
11 Incorrect 1 ms 208 KB Output isn't correct
12 Incorrect 0 ms 208 KB Output isn't correct
13 Incorrect 1 ms 208 KB Output isn't correct
14 Incorrect 1 ms 208 KB Output isn't correct
15 Incorrect 1 ms 208 KB Output isn't correct
16 Incorrect 6 ms 464 KB Output isn't correct
17 Incorrect 7 ms 464 KB Output isn't correct
18 Incorrect 8 ms 464 KB Output isn't correct
19 Incorrect 8 ms 428 KB Output isn't correct
20 Incorrect 4 ms 464 KB Output isn't correct
21 Incorrect 20 ms 1016 KB Output isn't correct
22 Incorrect 21 ms 1076 KB Output isn't correct
23 Incorrect 23 ms 1096 KB Output isn't correct
24 Incorrect 19 ms 1000 KB Output isn't correct
25 Incorrect 13 ms 976 KB Output isn't correct
26 Incorrect 19 ms 1060 KB Output isn't correct
27 Incorrect 25 ms 1060 KB Output isn't correct
28 Incorrect 19 ms 1032 KB Output isn't correct
29 Incorrect 20 ms 1056 KB Output isn't correct
30 Incorrect 11 ms 1052 KB Output isn't correct
31 Incorrect 1 ms 208 KB Output isn't correct
32 Incorrect 0 ms 208 KB Output isn't correct