답안 #261228

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
261228 2020-08-11T15:01:44 Z Saboon 치료 계획 (JOI20_treatment) C++14
0 / 100
3000 ms 2680 KB
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int maxn = 2e5 + 10;

int T[maxn], L[maxn], R[maxn], C[maxn], p[maxn], dp[maxn];

int main(){
	ios_base::sync_with_stdio(false);
	int n, m;
	cin >> n >> m;
	for (int i = 1; i <= m; i++)
		cin >> T[i] >> L[i] >> R[i] >> C[i];
	for (int i = 1; i <= m; i++)
		p[i] = i;
	sort(p+1, p+m+1, [](int a, int b){ 
		if (L[a] != L[b])
			return L[a] < L[b];
		return R[a] < R[b];
	});
	for (int iit = 1; iit <= m; iit++){
		int i = p[iit];
		if (L[i] == 1)
			dp[i] = C[i];
		else
			dp[i] = -1;
		for (int jit = 1; jit < iit; jit++){
			int j = p[jit];
			if (abs(T[i]-T[j]) <= R[j]-L[i]+1 and dp[j] != -1)
				if (dp[i] == -1 or dp[i] > dp[j] + C[i])
					dp[i] = dp[j] + C[i];
		}
	}
	int answer = -1;
	for (int i = 1; i <= m; i++)
		if (R[i] == n and dp[i] != -1 and (answer == -1 or answer > dp[i]))
			answer = dp[i];
	cout << answer << endl;
}
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 3079 ms 2680 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 384 KB Output is correct
2 Incorrect 1 ms 384 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 384 KB Output is correct
2 Incorrect 1 ms 384 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 3079 ms 2680 KB Time limit exceeded
2 Halted 0 ms 0 KB -