10026

每两种之间将其看成连续的两个,则这两个的前后关系对其他的没有影响,故是可以确定的,所以排序即可
//============================================================================
// Name        : 10026.cpp
// Author      : 
// Version     :
// Copyright   : Your copyright notice
// Description : Hello World in C++, Ansi-style
//============================================================================

#include <iostream>
#include <cstdio>
#include <algorithm>
using namespace std;

struct JOB
{
	int NO;
	double time, fine;
}a[1010];

int N, n;

bool cmp(JOB a, JOB b)
{
	return a.fine/a.time > b.fine/b.time;
}

int main() {
	scanf("%d", &N);
	while(N--)
	{
		scanf("%d", &n);
		for(int i = 1;i <= n;i++)
		{
			scanf("%lf%lf", &a[i].time, &a[i].fine);
			a[i].NO = i;
		}
		sort(a+1, a+n+1, cmp);
		for(int i = 1;i <= n;i++){
			if(i == 1) printf("%d", a[i].NO);
			else printf(" %d", a[i].NO);
		}
		printf("\n");
		if(N) printf("\n");
	}
	return 0;
}

转载于:https://www.cnblogs.com/ACKOKO/articles/2054964.html

====== 滚动窗口 1/21 [时段 1-16] ====== + Solver chosen : CPLEX-IBM + Processing objective function + Processing constraints CPXPARAM_MIP_Display 1 Tried aggregator 3 times. MIQP Presolve eliminated 604 rows and 184 columns. MIQP Presolve modified 584 coefficients. Aggregator did 454 substitutions. Reduced MIQP has 912 rows, 372 columns, and 2004 nonzeros. Reduced MIQP has 276 binaries, 0 generals, 0 SOSs, and 0 indicators. Reduced MIQP objective Q matrix has 96 nonzeros. Presolve time = 0.00 sec. (4.75 ticks) Probing time = 0.00 sec. (0.78 ticks) Tried aggregator 1 time. MIQP Presolve eliminated 760 rows and 310 columns. Reduced MIQP has 152 rows, 62 columns, and 334 nonzeros. Reduced MIQP has 46 binaries, 0 generals, 0 SOSs, and 0 indicators. Reduced MIQP objective Q matrix has 16 nonzeros. Presolve time = 0.00 sec. (0.50 ticks) Probing time = 0.00 sec. (0.17 ticks) Tried aggregator 1 time. Reduced MIQP has 152 rows, 62 columns, and 334 nonzeros. Reduced MIQP has 46 binaries, 0 generals, 0 SOSs, and 0 indicators. Reduced MIQP objective Q matrix has 16 nonzeros. Presolve time = 0.02 sec. (0.18 ticks) Probing time = 0.00 sec. (0.17 ticks) MIP emphasis: balance optimality and feasibility. MIP search method: dynamic search. Parallel mode: deterministic, using up to 12 threads. Node log . . . Best integer = 8.409990e+03 Node = 0 Best node = 8.409990e+03 + Calling CPLEX-IBM 优化成功 | 窗口成本: 15926.39 元 ====== 滚动窗口 2/21 [时段 5-20] ====== + Solver chosen : CPLEX-IBM + Processing objective function + Processing constraints CPXPARAM_MIP_Display 1 Tried aggregator 3 times. MIQP Presolve eliminated 608 rows and 184 columns. MIQP Presolve modified 584 coefficients. Aggregator did 454 substitutions. Reduced MIQP has 908 rows, 372 columns, and 1996 nonzeros. Reduced MIQP has 276 binaries, 0 generals, 0 SOSs, and 0 indicators. Reduced MIQP objective Q matrix has 96 nonzeros. Presolve time = 0.00 sec. (5.04 ticks) Probing time = 0.02 sec. (0.77 ticks) Tried aggregator 1 time. MIQP Presolve eliminated 757 rows and 310 columns. Reduced MIQP has 151 rows, 62 columns, and 332 nonzeros. Reduced MIQP has 46 binaries, 0 generals, 0 SOSs, and 0 indicators. Reduced MIQP objective Q matrix has 16 nonzeros. Presolve time = 0.00 sec. (0.50 ticks) Probing time = 0.00 sec. (0.17 ticks) Tried aggregator 1 time. Reduced MIQP has 151 rows, 62 columns, and 332 nonzeros. Reduced MIQP has 46 binaries, 0 generals, 0 SOSs, and 0 indicators. Reduced MIQP objective Q matrix has 16 nonzeros. Presolve time = 0.00 sec. (0.18 ticks) Probing time = 0.00 sec. (0.17 ticks) MIP emphasis: balance optimality and feasibility. MIP search method: dynamic search. Parallel mode: deterministic, using up to 12 threads. Node log . . . Best integer = 2.509990e+03 Node = 0 Best node = 2.509990e+03 + Calling CPLEX-IBM 优化成功 | 窗口成本: 10026.39 元 ====== 滚动窗口 3/21 [时段 9-24] ====== + Solver chosen : CPLEX-IBM + Processing objective function + Processing constraints CPXPARAM_MIP_Display 1 Tried aggregator 3 times. MIQP Presolve eliminated 608 rows and 184 columns. MIQP Presolve modified 584 coefficients. Aggregator did 454 substitutions. Reduced MIQP has 908 rows, 372 columns, and 1996 nonzeros. Reduced MIQP has 276 binaries, 0 generals, 0 SOSs, and 0 indicators. Reduced MIQP objective Q matrix has 96 nonzeros. Presolve time = 0.02 sec. (5.23 ticks) Probing time = 0.00 sec. (0.77 ticks) Tried aggregator 1 time. MIQP Presolve eliminated 757 rows and 310 columns. Reduced MIQP has 151 rows, 62 columns, and 332 nonzeros. Reduced MIQP has 46 binaries, 0 generals, 0 SOSs, and 0 indicators. Reduced MIQP objective Q matrix has 16 nonzeros. Presolve time = 0.00 sec. (0.50 ticks) Probing time = 0.00 sec. (0.17 ticks) Tried aggregator 1 time. Reduced MIQP has 151 rows, 62 columns, and 332 nonzeros. Reduced MIQP has 46 binaries, 0 generals, 0 SOSs, and 0 indicators. Reduced MIQP objective Q matrix has 16 nonzeros. Presolve time = 0.00 sec. (0.18 ticks) Probing time = 0.00 sec. (0.17 ticks) MIP emphasis: balance optimality and feasibility. MIP search method: dynamic search. Parallel mode: deterministic, using up to 12 threads. Node log . . . Best integer = 2.509990e+03 Node = 0 Best node = 2.509990e+03 + Calling CPLEX-IBM 优化成功 | 窗口成本: 10026.39 元 ====== 滚动窗口 4/21 [时段 13-28] ====== + Solver chosen : CPLEX-IBM + Processing objective function + Processing constraints CPXPARAM_MIP_Display 1 Tried aggregator 3 times. MIQP Presolve eliminated 608 rows and 184 columns. MIQP Presolve modified 584 coefficients. Aggregator did 454 substitutions. Reduced MIQP has 908 rows, 372 columns, and 1996 nonzeros. Reduced MIQP has 276 binaries, 0 generals, 0 SOSs, and 0 indicators. Reduced MIQP objective Q matrix has 96 nonzeros. Presolve time = 0.00 sec. (5.19 ticks) Probing time = 0.00 sec. (0.77 ticks) Tried aggregator 1 time. MIQP Presolve eliminated 757 rows and 310 columns. Reduced MIQP has 151 rows, 62 columns, and 332 nonzeros. Reduced MIQP has 46 binaries, 0 generals, 0 SOSs, and 0 indicators. Reduced MIQP objective Q matrix has 16 nonzeros. Presolve time = 0.00 sec. (0.50 ticks) Probing time = 0.00 sec. (0.17 ticks) Tried aggregator 1 time. Reduced MIQP has 151 rows, 62 columns, and 332 nonzeros. Reduced MIQP has 46 binaries, 0 generals, 0 SOSs, and 0 indicators. Reduced MIQP objective Q matrix has 16 nonzeros. Presolve time = 0.00 sec. (0.18 ticks) Probing time = 0.00 sec. (0.17 ticks) MIP emphasis: balance optimality and feasibility. MIP search method: dynamic search. Parallel mode: deterministic, using up to 12 threads. Node log . . . Best integer = 2.509990e+03 Node = 0 Best node = 2.509990e+03 + Calling CPLEX-IBM 优化成功 | 窗口成本: 10026.39 元 ====== 滚动窗口 5/21 [时段 17-32] ====== + Solver chosen : CPLEX-IBM + Processing objective function + Processing constraints CPXPARAM_MIP_Display 1 Tried aggregator 3 times. MIQP Presolve eliminated 576 rows and 120 columns. MIQP Presolve added 16 rows and 0 columns. MIQP Presolve modified 584 coefficients. Aggregator did 454 substitutions. Reduced MIQP has 956 rows, 436 columns, and 2123 nonzeros. Reduced MIQP has 292 binaries, 0 generals, 0 SOSs, and 0 indicators. Reduced MIQP objective Q matrix has 96 nonzeros. Presolve time = 0.02 sec. (5.40 ticks) Probing time = 0.00 sec. (0.79 ticks) Tried aggregator 1 time. MIQP Presolve eliminated 908 rows and 372 columns. Reduced MIQP has 48 rows, 64 columns, and 127 nonzeros. Reduced MIQP has 16 binaries, 0 generals, 0 SOSs, and 0 indicators. Presolve time = 0.02 sec. (0.44 ticks) Probing time = 0.00 sec. (0.02 ticks) Tried aggregator 2 times. Aggregator did 7 substitutions. Reduced MIP has 41 rows, 57 columns, and 113 nonzeros. Reduced MIP has 16 binaries, 0 generals, 0 SOSs, and 0 indicators. Presolve time = 0.00 sec. (0.13 ticks) Node log . . . Best integer = 2.509990e+03 Node = 0 Best node = 2.509990e+03 + Calling CPLEX-IBM 优化成功 | 窗口成本: 10026.39 元 ====== 滚动窗口 6/21 [时段 21-36] ====== + Solver chosen : CPLEX-IBM + Processing objective function + Processing constraints CPXPARAM_MIP_Display 1 Tried aggregator 3 times. MIQP Presolve eliminated 576 rows and 120 columns. MIQP Presolve added 16 rows and 0 columns. MIQP Presolve modified 584 coefficients. Aggregator did 454 substitutions. Reduced MIQP has 956 rows, 436 columns, and 2123 nonzeros. Reduced MIQP has 292 binaries, 0 generals, 0 SOSs, and 0 indicators. Reduced MIQP objective Q matrix has 96 nonzeros. Presolve time = 0.02 sec. (5.35 ticks) Probing time = 0.00 sec. (0.79 ticks) Tried aggregator 1 time. MIQP Presolve eliminated 908 rows and 372 columns. Reduced MIQP has 48 rows, 64 columns, and 127 nonzeros. Reduced MIQP has 16 binaries, 0 generals, 0 SOSs, and 0 indicators. Presolve time = 0.00 sec. (0.44 ticks) Probing time = 0.00 sec. (0.02 ticks) Tried aggregator 2 times. Aggregator did 8 substitutions. Reduced MIP has 40 rows, 56 columns, and 111 nonzeros. Reduced MIP has 16 binaries, 0 generals, 0 SOSs, and 0 indicators. Presolve time = 0.00 sec. (0.13 ticks) Node log . . . Best integer = 2.509990e+03 Node = 0 Best node = 2.509990e+03 + Calling CPLEX-IBM 优化成功 | 窗口成本: 10026.39 元 ====== 滚动窗口 7/21 [时段 25-40] ====== + Solver chosen : CPLEX-IBM + Processing objective function + Processing constraints CPXPARAM_MIP_Display 1 Tried aggregator 3 times. MIQP Presolve eliminated 576 rows and 120 columns. MIQP Presolve added 16 rows and 0 columns. MIQP Presolve modified 584 coefficients. Aggregator did 454 substitutions. Reduced MIQP has 956 rows, 436 columns, and 2123 nonzeros. Reduced MIQP has 292 binaries, 0 generals, 0 SOSs, and 0 indicators. Reduced MIQP objective Q matrix has 96 nonzeros. Presolve time = 0.00 sec. (5.35 ticks) Probing time = 0.00 sec. (0.79 ticks) Tried aggregator 1 time. MIQP Presolve eliminated 908 rows and 372 columns. Reduced MIQP has 48 rows, 64 columns, and 127 nonzeros. Reduced MIQP has 16 binaries, 0 generals, 0 SOSs, and 0 indicators. Presolve time = 0.00 sec. (0.44 ticks) Probing time = 0.00 sec. (0.02 ticks) Tried aggregator 2 times. Aggregator did 8 substitutions. Reduced MIP has 40 rows, 56 columns, and 111 nonzeros. Reduced MIP has 16 binaries, 0 generals, 0 SOSs, and 0 indicators. Presolve time = 0.00 sec. (0.13 ticks) Node log . . . Best integer = 2.509990e+03 Node = 0 Best node = 2.509990e+03 + Calling CPLEX-IBM 优化成功 | 窗口成本: 10026.39 元 ====== 滚动窗口 8/21 [时段 29-44] ====== + Solver chosen : CPLEX-IBM + Processing objective function + Processing constraints CPXPARAM_MIP_Display 1 Tried aggregator 3 times. MIQP Presolve eliminated 576 rows and 120 columns. MIQP Presolve added 16 rows and 0 columns. MIQP Presolve modified 584 coefficients. Aggregator did 454 substitutions. Reduced MIQP has 956 rows, 436 columns, and 2123 nonzeros. Reduced MIQP has 292 binaries, 0 generals, 0 SOSs, and 0 indicators. Reduced MIQP objective Q matrix has 96 nonzeros. Presolve time = 0.00 sec. (5.35 ticks) Probing time = 0.00 sec. (0.79 ticks) Tried aggregator 1 time. MIQP Presolve eliminated 908 rows and 372 columns. Reduced MIQP has 48 rows, 64 columns, and 127 nonzeros. Reduced MIQP has 16 binaries, 0 generals, 0 SOSs, and 0 indicators. Presolve time = 0.00 sec. (0.44 ticks) Probing time = 0.00 sec. (0.02 ticks) Tried aggregator 2 times. Aggregator did 8 substitutions. Reduced MIP has 40 rows, 56 columns, and 111 nonzeros. Reduced MIP has 16 binaries, 0 generals, 0 SOSs, and 0 indicators. Presolve time = 0.00 sec. (0.13 ticks) Node log . . . Best integer = 2.509990e+03 Node = 0 Best node = 2.509990e+03 + Calling CPLEX-IBM 优化成功 | 窗口成本: 10026.39 元 ====== 滚动窗口 9/21 [时段 33-48] ====== + Solver chosen : CPLEX-IBM + Processing objective function + Processing constraints CPXPARAM_MIP_Display 1 Tried aggregator 3 times. MIQP Presolve eliminated 576 rows and 120 columns. MIQP Presolve added 16 rows and 0 columns. MIQP Presolve modified 584 coefficients. Aggregator did 454 substitutions. Reduced MIQP has 956 rows, 436 columns, and 2123 nonzeros. Reduced MIQP has 292 binaries, 0 generals, 0 SOSs, and 0 indicators. Reduced MIQP objective Q matrix has 96 nonzeros. Presolve time = 0.02 sec. (5.35 ticks) Probing time = 0.00 sec. (0.79 ticks) Tried aggregator 1 time. MIQP Presolve eliminated 908 rows and 372 columns. Reduced MIQP has 48 rows, 64 columns, and 127 nonzeros. Reduced MIQP has 16 binaries, 0 generals, 0 SOSs, and 0 indicators. Presolve time = 0.00 sec. (0.44 ticks) Probing time = 0.00 sec. (0.02 ticks) Tried aggregator 2 times. Aggregator did 8 substitutions. Reduced MIP has 40 rows, 56 columns, and 111 nonzeros. Reduced MIP has 16 binaries, 0 generals, 0 SOSs, and 0 indicators. Presolve time = 0.02 sec. (0.13 ticks) Node log . . . Best integer = 2.509990e+03 Node = 0 Best node = 2.509990e+03 + Calling CPLEX-IBM 优化成功 | 窗口成本: 10026.39 元 ====== 滚动窗口 10/21 [时段 37-52] ====== + Solver chosen : CPLEX-IBM + Processing objective function + Processing constraints CPXPARAM_MIP_Display 1 Tried aggregator 3 times. MIQP Presolve eliminated 576 rows and 120 columns. MIQP Presolve added 16 rows and 0 columns. MIQP Presolve modified 584 coefficients. Aggregator did 454 substitutions. Reduced MIQP has 956 rows, 436 columns, and 2123 nonzeros. Reduced MIQP has 292 binaries, 0 generals, 0 SOSs, and 0 indicators. Reduced MIQP objective Q matrix has 96 nonzeros. Presolve time = 0.02 sec. (5.40 ticks) Probing time = 0.00 sec. (0.79 ticks) Tried aggregator 1 time. MIQP Presolve eliminated 908 rows and 372 columns. Reduced MIQP has 48 rows, 64 columns, and 127 nonzeros. Reduced MIQP has 16 binaries, 0 generals, 0 SOSs, and 0 indicators. Presolve time = 0.00 sec. (0.44 ticks) Probing time = 0.00 sec. (0.02 ticks) Tried aggregator 2 times. Aggregator did 8 substitutions. Reduced MIP has 40 rows, 56 columns, and 111 nonzeros. Reduced MIP has 16 binaries, 0 generals, 0 SOSs, and 0 indicators. Presolve time = 0.00 sec. (0.13 ticks) Node log . . . Best integer = 2.509990e+03 Node = 0 Best node = 2.509990e+03 + Calling CPLEX-IBM 优化成功 | 窗口成本: 10026.39 元 ====== 滚动窗口 11/21 [时段 41-56] ====== + Solver chosen : CPLEX-IBM + Processing objective function + Processing constraints CPXPARAM_MIP_Display 1 Tried aggregator 3 times. MIQP Presolve eliminated 576 rows and 120 columns. MIQP Presolve added 16 rows and 0 columns. MIQP Presolve modified 584 coefficients. Aggregator did 454 substitutions. Reduced MIQP has 956 rows, 436 columns, and 2123 nonzeros. Reduced MIQP has 292 binaries, 0 generals, 0 SOSs, and 0 indicators. Reduced MIQP objective Q matrix has 96 nonzeros. Presolve time = 0.00 sec. (5.30 ticks) Probing time = 0.00 sec. (0.79 ticks) Tried aggregator 1 time. MIQP Presolve eliminated 908 rows and 372 columns. Reduced MIQP has 48 rows, 64 columns, and 127 nonzeros. Reduced MIQP has 16 binaries, 0 generals, 0 SOSs, and 0 indicators. Presolve time = 0.00 sec. (0.44 ticks) Probing time = 0.00 sec. (0.02 ticks) Tried aggregator 2 times. Aggregator did 8 substitutions. Reduced MIP has 40 rows, 56 columns, and 111 nonzeros. Reduced MIP has 16 binaries, 0 generals, 0 SOSs, and 0 indicators. Presolve time = 0.00 sec. (0.13 ticks) Node log . . . Best integer = 2.509990e+03 Node = 0 Best node = 2.509990e+03 + Calling CPLEX-IBM 优化成功 | 窗口成本: 10026.39 元 ====== 滚动窗口 12/21 [时段 45-60] ====== + Solver chosen : CPLEX-IBM + Processing objective function + Processing constraints CPXPARAM_MIP_Display 1 Tried aggregator 3 times. MIQP Presolve eliminated 576 rows and 120 columns. MIQP Presolve added 16 rows and 0 columns. MIQP Presolve modified 584 coefficients. Aggregator did 454 substitutions. Reduced MIQP has 956 rows, 436 columns, and 2123 nonzeros. Reduced MIQP has 292 binaries, 0 generals, 0 SOSs, and 0 indicators. Reduced MIQP objective Q matrix has 96 nonzeros. Presolve time = 0.00 sec. (5.40 ticks) Probing time = 0.00 sec. (0.79 ticks) Tried aggregator 1 time. MIQP Presolve eliminated 908 rows and 372 columns. Reduced MIQP has 48 rows, 64 columns, and 127 nonzeros. Reduced MIQP has 16 binaries, 0 generals, 0 SOSs, and 0 indicators. Presolve time = 0.00 sec. (0.44 ticks) Probing time = 0.00 sec. (0.02 ticks) Tried aggregator 2 times. Aggregator did 8 substitutions. Reduced MIP has 40 rows, 56 columns, and 111 nonzeros. Reduced MIP has 16 binaries, 0 generals, 0 SOSs, and 0 indicators. Presolve time = 0.00 sec. (0.13 ticks) Node log . . . Best integer = 2.509990e+03 Node = 0 Best node = 2.509990e+03 + Calling CPLEX-IBM 优化成功 | 窗口成本: 10026.39 元 ====== 滚动窗口 13/21 [时段 49-64] ====== + Solver chosen : CPLEX-IBM + Processing objective function + Processing constraints CPXPARAM_MIP_Display 1 Tried aggregator 3 times. MIQP Presolve eliminated 576 rows and 120 columns. MIQP Presolve added 16 rows and 0 columns. MIQP Presolve modified 584 coefficients. Aggregator did 454 substitutions. Reduced MIQP has 956 rows, 436 columns, and 2123 nonzeros. Reduced MIQP has 292 binaries, 0 generals, 0 SOSs, and 0 indicators. Reduced MIQP objective Q matrix has 96 nonzeros. Presolve time = 0.00 sec. (5.26 ticks) Probing time = 0.00 sec. (0.79 ticks) Tried aggregator 1 time. MIQP Presolve eliminated 908 rows and 372 columns. Reduced MIQP has 48 rows, 64 columns, and 127 nonzeros. Reduced MIQP has 16 binaries, 0 generals, 0 SOSs, and 0 indicators. Presolve time = 0.00 sec. (0.44 ticks) Probing time = 0.00 sec. (0.02 ticks) Tried aggregator 2 times. Aggregator did 8 substitutions. Reduced MIP has 40 rows, 56 columns, and 111 nonzeros. Reduced MIP has 16 binaries, 0 generals, 0 SOSs, and 0 indicators. Presolve time = 0.00 sec. (0.13 ticks) Node log . . . Best integer = 2.509990e+03 Node = 0 Best node = 2.509990e+03 + Calling CPLEX-IBM 优化成功 | 窗口成本: 10026.39 元 ====== 滚动窗口 14/21 [时段 53-68] ====== + Solver chosen : CPLEX-IBM + Processing objective function + Processing constraints CPXPARAM_MIP_Display 1 Tried aggregator 3 times. MIQP Presolve eliminated 576 rows and 120 columns. MIQP Presolve added 16 rows and 0 columns. MIQP Presolve modified 584 coefficients. Aggregator did 454 substitutions. Reduced MIQP has 956 rows, 436 columns, and 2123 nonzeros. Reduced MIQP has 292 binaries, 0 generals, 0 SOSs, and 0 indicators. Reduced MIQP objective Q matrix has 96 nonzeros. Presolve time = 0.01 sec. (5.45 ticks) Probing time = 0.00 sec. (0.79 ticks) Tried aggregator 1 time. MIQP Presolve eliminated 908 rows and 372 columns. Reduced MIQP has 48 rows, 64 columns, and 127 nonzeros. Reduced MIQP has 16 binaries, 0 generals, 0 SOSs, and 0 indicators. Presolve time = 0.02 sec. (0.44 ticks) Probing time = 0.00 sec. (0.02 ticks) Tried aggregator 2 times. Aggregator did 8 substitutions. Reduced MIP has 40 rows, 56 columns, and 111 nonzeros. Reduced MIP has 16 binaries, 0 generals, 0 SOSs, and 0 indicators. Presolve time = 0.00 sec. (0.13 ticks) Node log . . . Best integer = 2.509990e+03 Node = 0 Best node = 2.509990e+03 + Calling CPLEX-IBM 优化成功 | 窗口成本: 10026.39 元 ====== 滚动窗口 15/21 [时段 57-72] ====== + Solver chosen : CPLEX-IBM + Processing objective function + Processing constraints CPXPARAM_MIP_Display 1 Tried aggregator 3 times. MIQP Presolve eliminated 576 rows and 120 columns. MIQP Presolve added 16 rows and 0 columns. MIQP Presolve modified 584 coefficients. Aggregator did 454 substitutions. Reduced MIQP has 956 rows, 436 columns, and 2123 nonzeros. Reduced MIQP has 292 binaries, 0 generals, 0 SOSs, and 0 indicators. Reduced MIQP objective Q matrix has 96 nonzeros. Presolve time = 0.02 sec. (5.26 ticks) Probing time = 0.00 sec. (0.79 ticks) Tried aggregator 1 time. MIQP Presolve eliminated 908 rows and 372 columns. Reduced MIQP has 48 rows, 64 columns, and 127 nonzeros. Reduced MIQP has 16 binaries, 0 generals, 0 SOSs, and 0 indicators. Presolve time = 0.00 sec. (0.44 ticks) Probing time = 0.00 sec. (0.02 ticks) Tried aggregator 2 times. Aggregator did 8 substitutions. Reduced MIP has 40 rows, 56 columns, and 111 nonzeros. Reduced MIP has 16 binaries, 0 generals, 0 SOSs, and 0 indicators. Presolve time = 0.00 sec. (0.13 ticks) Node log . . . Best integer = 2.509990e+03 Node = 0 Best node = 2.509990e+03 + Calling CPLEX-IBM 优化成功 | 窗口成本: 10026.39 元 ====== 滚动窗口 16/21 [时段 61-76] ====== + Solver chosen : CPLEX-IBM + Processing objective function + Processing constraints CPXPARAM_MIP_Display 1 Tried aggregator 3 times. MIQP Presolve eliminated 576 rows and 120 columns. MIQP Presolve added 16 rows and 0 columns. MIQP Presolve modified 584 coefficients. Aggregator did 454 substitutions. Reduced MIQP has 956 rows, 436 columns, and 2123 nonzeros. Reduced MIQP has 292 binaries, 0 generals, 0 SOSs, and 0 indicators. Reduced MIQP objective Q matrix has 96 nonzeros. Presolve time = 0.02 sec. (5.45 ticks) Probing time = 0.00 sec. (0.79 ticks) Tried aggregator 1 time. MIQP Presolve eliminated 908 rows and 372 columns. Reduced MIQP has 48 rows, 64 columns, and 127 nonzeros. Reduced MIQP has 16 binaries, 0 generals, 0 SOSs, and 0 indicators. Presolve time = 0.02 sec. (0.44 ticks) Probing time = 0.00 sec. (0.02 ticks) Tried aggregator 2 times. Aggregator did 8 substitutions. Reduced MIP has 40 rows, 56 columns, and 111 nonzeros. Reduced MIP has 16 binaries, 0 generals, 0 SOSs, and 0 indicators. Presolve time = 0.00 sec. (0.13 ticks) Node log . . . Best integer = 2.509990e+03 Node = 0 Best node = 2.509990e+03 + Calling CPLEX-IBM 优化成功 | 窗口成本: 10026.39 元 ====== 滚动窗口 17/21 [时段 65-80] ====== + Solver chosen : CPLEX-IBM + Processing objective function + Processing constraints CPXPARAM_MIP_Display 1 Tried aggregator 3 times. MIQP Presolve eliminated 576 rows and 120 columns. MIQP Presolve added 16 rows and 0 columns. MIQP Presolve modified 584 coefficients. Aggregator did 454 substitutions. Reduced MIQP has 956 rows, 436 columns, and 2123 nonzeros. Reduced MIQP has 292 binaries, 0 generals, 0 SOSs, and 0 indicators. Reduced MIQP objective Q matrix has 96 nonzeros. Presolve time = 0.00 sec. (5.21 ticks) Probing time = 0.00 sec. (0.79 ticks) Tried aggregator 1 time. MIQP Presolve eliminated 908 rows and 372 columns. Reduced MIQP has 48 rows, 64 columns, and 127 nonzeros. Reduced MIQP has 16 binaries, 0 generals, 0 SOSs, and 0 indicators. Presolve time = 0.00 sec. (0.44 ticks) Probing time = 0.00 sec. (0.02 ticks) Tried aggregator 2 times. Aggregator did 8 substitutions. Reduced MIP has 40 rows, 56 columns, and 111 nonzeros. Reduced MIP has 16 binaries, 0 generals, 0 SOSs, and 0 indicators. Presolve time = 0.00 sec. (0.13 ticks) Node log . . . Best integer = 2.509990e+03 Node = 0 Best node = 2.509990e+03 + Calling CPLEX-IBM 优化成功 | 窗口成本: 10026.39 元 ====== 滚动窗口 18/21 [时段 69-84] ====== + Solver chosen : CPLEX-IBM + Processing objective function + Processing constraints CPXPARAM_MIP_Display 1 Tried aggregator 3 times. MIQP Presolve eliminated 576 rows and 120 columns. MIQP Presolve added 16 rows and 0 columns. MIQP Presolve modified 584 coefficients. Aggregator did 454 substitutions. Reduced MIQP has 956 rows, 436 columns, and 2123 nonzeros. Reduced MIQP has 292 binaries, 0 generals, 0 SOSs, and 0 indicators. Reduced MIQP objective Q matrix has 96 nonzeros. Presolve time = 0.02 sec. (5.40 ticks) Probing time = 0.00 sec. (0.79 ticks) Tried aggregator 1 time. MIQP Presolve eliminated 908 rows and 372 columns. Reduced MIQP has 48 rows, 64 columns, and 127 nonzeros. Reduced MIQP has 16 binaries, 0 generals, 0 SOSs, and 0 indicators. Presolve time = 0.00 sec. (0.44 ticks) Probing time = 0.00 sec. (0.02 ticks) Tried aggregator 2 times. Aggregator did 8 substitutions. Reduced MIP has 40 rows, 56 columns, and 111 nonzeros. Reduced MIP has 16 binaries, 0 generals, 0 SOSs, and 0 indicators. Presolve time = 0.00 sec. (0.13 ticks) Node log . . . Best integer = 2.509990e+03 Node = 0 Best node = 2.509990e+03 + Calling CPLEX-IBM 优化成功 | 窗口成本: 10026.39 元 ====== 滚动窗口 19/21 [时段 73-88] ====== + Solver chosen : CPLEX-IBM + Processing objective function + Processing constraints CPXPARAM_MIP_Display 1 Tried aggregator 3 times. MIQP Presolve eliminated 576 rows and 120 columns. MIQP Presolve added 16 rows and 0 columns. MIQP Presolve modified 584 coefficients. Aggregator did 454 substitutions. Reduced MIQP has 956 rows, 436 columns, and 2123 nonzeros. Reduced MIQP has 292 binaries, 0 generals, 0 SOSs, and 0 indicators. Reduced MIQP objective Q matrix has 96 nonzeros. Presolve time = 0.00 sec. (5.31 ticks) Probing time = 0.00 sec. (0.79 ticks) Tried aggregator 1 time. MIQP Presolve eliminated 908 rows and 372 columns. Reduced MIQP has 48 rows, 64 columns, and 127 nonzeros. Reduced MIQP has 16 binaries, 0 generals, 0 SOSs, and 0 indicators. Presolve time = 0.00 sec. (0.44 ticks) Probing time = 0.00 sec. (0.02 ticks) Tried aggregator 2 times. Aggregator did 8 substitutions. Reduced MIP has 40 rows, 56 columns, and 111 nonzeros. Reduced MIP has 16 binaries, 0 generals, 0 SOSs, and 0 indicators. Presolve time = 0.00 sec. (0.13 ticks) Node log . . . Best integer = 2.509990e+03 Node = 0 Best node = 2.509990e+03 + Calling CPLEX-IBM 优化成功 | 窗口成本: 10026.39 元 ====== 滚动窗口 20/21 [时段 77-92] ====== + Solver chosen : CPLEX-IBM + Processing objective function + Processing constraints CPXPARAM_MIP_Display 1 Tried aggregator 3 times. MIQP Presolve eliminated 576 rows and 120 columns. MIQP Presolve added 16 rows and 0 columns. MIQP Presolve modified 584 coefficients. Aggregator did 454 substitutions. Reduced MIQP has 956 rows, 436 columns, and 2123 nonzeros. Reduced MIQP has 292 binaries, 0 generals, 0 SOSs, and 0 indicators. Reduced MIQP objective Q matrix has 96 nonzeros. Presolve time = 0.02 sec. (5.40 ticks) Probing time = 0.00 sec. (0.79 ticks) Tried aggregator 1 time. MIQP Presolve eliminated 908 rows and 372 columns. Reduced MIQP has 48 rows, 64 columns, and 127 nonzeros. Reduced MIQP has 16 binaries, 0 generals, 0 SOSs, and 0 indicators. Presolve time = 0.00 sec. (0.44 ticks) Probing time = 0.00 sec. (0.02 ticks) Tried aggregator 2 times. Aggregator did 8 substitutions. Reduced MIP has 40 rows, 56 columns, and 111 nonzeros. Reduced MIP has 16 binaries, 0 generals, 0 SOSs, and 0 indicators. Presolve time = 0.02 sec. (0.13 ticks) Node log . . . Best integer = 2.509990e+03 Node = 0 Best node = 2.509990e+03 + Calling CPLEX-IBM 优化成功 | 窗口成本: 10026.39 元 ====== 滚动窗口 21/21 [时段 81-96] ====== + Solver chosen : CPLEX-IBM + Processing objective function + Processing constraints CPXPARAM_MIP_Display 1 Tried aggregator 3 times. MIQP Presolve eliminated 576 rows and 120 columns. MIQP Presolve added 16 rows and 0 columns. MIQP Presolve modified 584 coefficients. Aggregator did 454 substitutions. Reduced MIQP has 956 rows, 436 columns, and 2123 nonzeros. Reduced MIQP has 292 binaries, 0 generals, 0 SOSs, and 0 indicators. Reduced MIQP objective Q matrix has 96 nonzeros. Presolve time = 0.00 sec. (5.35 ticks) Probing time = 0.00 sec. (0.79 ticks) Tried aggregator 1 time. MIQP Presolve eliminated 908 rows and 372 columns. Reduced MIQP has 48 rows, 64 columns, and 127 nonzeros. Reduced MIQP has 16 binaries, 0 generals, 0 SOSs, and 0 indicators. Presolve time = 0.00 sec. (0.44 ticks) Probing time = 0.00 sec. (0.02 ticks) Tried aggregator 2 times. Aggregator did 8 substitutions. Reduced MIP has 40 rows, 56 columns, and 111 nonzeros. Reduced MIP has 16 binaries, 0 generals, 0 SOSs, and 0 indicators. Presolve time = 0.00 sec. (0.13 ticks) Node log . . . Best integer = 2.509990e+03 Node = 0 Best node = 2.509990e+03 + Calling CPLEX-IBM 优化成功 | 窗口成本: 10026.39 元
11-28
当前,全球经济格局深刻调整,数字化浪潮席卷各行各业,智能物流作为现代物流发展的必然趋势和关键支撑,正迎来前所未有的发展机遇。以人工智能、物联网、大数据、云计算、区块链等前沿信息技术的快速迭代与深度融合为驱动,智能物流不再是传统物流的简单技术叠加,而是正在经历一场从自动化向智能化、从被动响应向主动预测、从信息孤岛向全面互联的深刻变革。展望2025年,智能物流系统将不再局限于提升效率、降低成本的基本目标,而是要构建一个感知更全面、决策更精准、执行更高效、协同更顺畅的智慧运行体系。这要求我们必须超越传统思维定式,以系统化、前瞻性的视角,全面规划和实施智能物流系统的建设。本实施方案正是基于对行业发展趋势的深刻洞察和对未来需求的精准把握而制定。我们的核心目标在于:通过构建一个集成了先进感知技术、大数据分析引擎、智能决策算法和高效协同平台的综合智能物流系统,实现物流全链路的可视化、透明化和智能化管理。这不仅是技术层面的革新,更是管理模式和服务能力的全面提升。本方案旨在明确系统建设的战略方向、关键任务、技术路径和实施步骤,确保通过系统化部署,有效应对日益复杂的供应链环境,提升整体物流韧性,优化资源配置效率,降低运营成本,并最终为客户创造更卓越的价值体验。我们致力于通过本方案的实施,引领智能物流迈向更高水平,为构建现代化经济体系、推动高质量发展提供强有力的物流保障。
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符  | 博主筛选后可见
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值