답안 #372557

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
372557 2021-02-28T19:47:16 Z Christopher_Rdz Garage (IOI09_garage) C++17
45 / 100
1 ms 364 KB
#include <iostream>
#include <queue>
using namespace std;

int espacio[1002];
int carros[2002];
int cubeta[1002];
queue<int> cola;

int main(){
  ios_base::sync_with_stdio(0);
  int n, m, aux;
  long long int tot = 0;
  cin >> n >> m;
  for (int i = 1; i <= n; i++){
    cin >> espacio[i];
  }
  for (int i = 1; i <= m; i++){
    cin >> carros[i];
  }
  int lugar = 1;
  for (int i = 1; i <= m * 2; i++){
    cin >> aux;
    if (aux > 0){
      lugar = 0;
      for (int j = 1; j <= n; j++){
        if (cubeta[j] == 0){
          cubeta[j] = aux;
          lugar = j;
          break;
        }
      }
      if (lugar != 0){
      	tot += espacio[lugar] * carros[aux];
      }else{
        cola.push(aux);
      }
    }else{
        int x = abs(aux);
        int pos = 0;
      for (int j = 1; j <= n; j++){
        if (cubeta[j] == x){
          cubeta[j] = 0;
          pos = j;
          break;
        }
      }
      if (cola.size() >= 1){
        int f = cola.front();
        cola.pop();
        tot += espacio[pos] * carros[f];
      }
    }
  }
  cout << tot;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 364 KB Output is correct
2 Incorrect 1 ms 364 KB Output isn't correct
3 Correct 1 ms 364 KB Output is correct
4 Correct 0 ms 364 KB Output is correct
5 Correct 0 ms 364 KB Output is correct
6 Incorrect 0 ms 364 KB Output isn't correct
7 Correct 0 ms 364 KB Output is correct
8 Incorrect 1 ms 364 KB Output isn't correct
9 Correct 1 ms 364 KB Output is correct
10 Incorrect 1 ms 364 KB Output isn't correct
11 Correct 1 ms 364 KB Output is correct
12 Incorrect 1 ms 364 KB Output isn't correct
13 Correct 1 ms 364 KB Output is correct
14 Incorrect 1 ms 364 KB Output isn't correct
15 Correct 1 ms 364 KB Output is correct
16 Incorrect 1 ms 364 KB Output isn't correct
17 Incorrect 1 ms 364 KB Output isn't correct
18 Incorrect 1 ms 364 KB Output isn't correct
19 Incorrect 1 ms 364 KB Output isn't correct
20 Incorrect 1 ms 364 KB Output isn't correct