제출 #919189

#제출 시각아이디문제언어결과실행 시간메모리
919189PlayVoltzTruck Driver (IOI23_deliveries)C++17
컴파일 에러
0 ms0 KiB
#include "deliveries.h"
#include <bits/stdc+.h>
using namespace std;

int l;
vector<int> w;

void init(int N, vector<int> U, vector<int> V, vector<int> T, vector<int> W){
	w=W;
	l=T[0];
}

long long max_time(int s, int x){
	w[s]=x;
	return 2*l*min(w[0], w[1]);
}

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

deliveries.cpp:2:10: fatal error: bits/stdc+.h: No such file or directory
    2 | #include <bits/stdc+.h>
      |          ^~~~~~~~~~~~~~
compilation terminated.