疑似是造的数据未考虑到会爆精度的问题,测试的样例输出超过了int精度,这导致以下代码会被判为AC
#include <cstdio>
#include <climits>
typedef long long ll;
const int maxn = 510;
const int INF = 0x7fffffff;
int dist[maxn], cost[maxn];//第i个站的总里程、最少花费
int l1, l2, l3, c1, c2, c3;
int Price(int L) {//L距离的票多少钱
if(L<...