제출 #42469

#제출 시각아이디문제언어결과실행 시간메모리
42469sinhriv도장 모으기 (JOI14_stamps)C++14
85 / 100
1052 ms36588 KiB
#include <bits/stdc++.h>

using namespace std;

const int N = 3030;

int n, T;
int f[N][N]; 
bool minimize(int &u, int v){
  if(u > v){
    u = v;
    return 1;
  }
  return 0;
}

int main(){

  scanf("%d%d", &n, &T);

  memset(f, 60, sizeof f);

  f[0][0] = T;

  for(int i = 0; i < n; ++i){
    int U, V, D, E;
    cin >> U >> V >> D >> E;


    for(int j = 0; j <= n; ++j){
      if(f[i][j] == f[n + 2][1]) continue;

      f[i + 1][j] = min(f[i + 1][j], f[i][j] + U + V + T * (j * 2 + 1));

      f[i + 1][j + 1] = min(f[i + 1][j + 1], f[i][j] + V + D + T * (j * 2 + 1));

      if(j > 0){
        f[i + 1][j] = min(f[i + 1][j], f[i][j] + E + D + T * (j * 2 + 1));
        f[i + 1][j - 1] = min(f[i + 1][j - 1], f[i][j] + U + E + T * (j * 2 + 1));
      }
    }

    set < pair < int, int > > heap;

    for(int j = 0; j <= n; ++j){
      heap.emplace(f[i + 1][j], j);
    }

    vector < bool > mark(n + 5, 0);

   while(!heap.empty()){
      int x = heap.begin() -> second;
      heap.erase(heap.begin());

      if(mark[x]) continue;
      mark[x] = true;

      if(x > 0 && minimize(f[i + 1][x - 1], f[i + 1][x] + U + E)) heap.emplace(f[i + 1][x - 1], x - 1);
      if(x < n && minimize(f[i + 1][x + 1], f[i + 1][x] + V + D)) heap.emplace(f[i + 1][x + 1], x + 1); 
    }
  }

  cout << f[n][0]   << endl;

	return 0;
}

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

stamps.cpp: In function 'int main()':
stamps.cpp:19:24: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   scanf("%d%d", &n, &T);
                        ^
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...