Submission #1024622

# Submission time Handle Problem Language Result Execution time Memory
1024622 2024-07-16T08:42:50 Z TraianDanciu Long Distance Coach (JOI17_coach) C++17
0 / 100
1 ms 4440 KB
#include <stdio.h>
#include <algorithm>

#define MAXN 200000
#define INFINIT 1000000000000000000

static inline long long min(long long a, long long b) {
  return a < b ? a : b;
}
static inline long long max(long long a, long long b) {
  return a > b ? a : b;
}

// lichao incoming
/*
struct Line {
  long long a, b;
  
  inline long long eval(long long x) {
    return a * x + b;
  }
};

struct Node {
  Node *st, *dr;
  Line val;
  
  Node(Line val) {
    st = dr = nullptr;
    this->val = val;
  }
};

void update(Node *&node, int left, int right, Line val) {
  int middle;
  
  if(node == nullptr) {
    node = new Node(val);
  } else {
    middle = (left + right) / 2;
    
    if(node->val.eval(middle) > val.eval(middle)) {
      std::swap(node->val, val);
    }
    
    if(node->val.eval(left) > val.eval(left)) {
      update(node->st, left, middle, val);
    }
    if(node->val.eval(right) > val.eval(right)) {
      update(node->dr, middle + 1, right, val);
    }
  }
}

long long query(Node *&node, int left, int right, long long pos) {
  int middle;
  long long ans;
  
  if(node == nullptr) {
    return INFINIT;
  }
  
  middle = (left + right) / 2;
  ans = node->val.eval(pos);
  
  if(pos <= middle) {
    ans = min(ans, query(node->st, left, middle, pos));
  } else {
    ans = min(ans, query(node->dr, middle + 1, right, pos));
  }
  
  return ans;
}
*/

struct Arbore {
  int val, tip;
  long long aux;
} v[2 * MAXN + 2];
static inline int compar(Arbore a, Arbore b) {
  return a.val < b.val;
}
long long sp[2 * MAXN + 2], dp[2 * MAXN];
int cnt[2 * MAXN + 2];

int main() {
  int n, m, t, w, i, j;
  long long x;
  
  scanf("%lld%d%d%d%d", &x, &n, &m, &w, &t);
  for(i = 1; i <= n; i++) {
    scanf("%lld", &v[i].aux);
    v[i].val = v[i].aux % t;
    v[i].tip = 0;
  }
  
  for(i = n + 1; i <= n + m; i++) {
    scanf("%d%lld", &v[i].val, &v[i].aux);
    v[i].tip = 1;
  }
  
  m++;
  v[n + m] = (struct Arbore){.val = (int)x % t, .tip = 0, .aux = x};
  std::sort(v + 1, v + n + m + 1, compar);
  
  for(i = 1; i <= n + m; i++) {
    sp[i] = sp[i - 1] + v[i].aux * v[i].tip;
    cnt[i] = cnt[i - 1] + v[i].tip;
  }
  
  for(i = 1; i <= n + m; i++) {
    if(v[i].tip == 0) {
      dp[i] = INFINIT;
      for(j = 0; j < i; j++) {
        dp[i] = min(dp[i], dp[j] + sp[i] - sp[j] + (v[i].aux
              - v[i].val) / t * 1LL * w * (cnt[i] - cnt[j]));
      }
    } else {
      dp[i] = dp[i - 1] + 1LL * w * (x / t + (v[i].val <= x % t));
    }
  }
  
  // adaug la final si pentru sofer
  printf("%lld\n", dp[n + m] + 1LL * (x / t + 1) * w);
  return 0;
}

Compilation message

coach.cpp: In function 'int main()':
coach.cpp:90:8: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   90 |   scanf("%lld%d%d%d%d", &x, &n, &m, &w, &t);
      |   ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
coach.cpp:92:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   92 |     scanf("%lld", &v[i].aux);
      |     ~~~~~^~~~~~~~~~~~~~~~~~~
coach.cpp:98:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
   98 |     scanf("%d%lld", &v[i].val, &v[i].aux);
      |     ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 4440 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 4440 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 4440 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 4440 KB Output isn't correct
2 Halted 0 ms 0 KB -