https://code.google.com/codejam/contest/635101/dashboard#s=p1
 

Problem

A flock of chickens are running east along a straight, narrow road. Each one is running with its own constant speed. Whenever a chick catches up to the one in front of it, it has to slow down and follow at the speed of the other chick. You are in a mobile crane behind the flock, chasing the chicks towards the barn at the end of the road. The arm of the crane allows you to pick up any chick momentarily, let the chick behind it pass underneath and place the picked up chick back down. This operation takes no time and can only be performed on a pair of chicks that are immediately next to each other, even if 3 or more chicks are in a row, one after the other.

Given the initial locations (Xi) at time 0 and natural speeds (Vi) of the chicks, as well as the location of the barn (B), what is the minimum number of swaps you need to perform with your crane in order to have at least K of the N chicks arrive at the barn no later than time T?

You may think of the chicks as points moving along a line. Even if 3 or more chicks are at the same location, next to each other, picking up one of them will only let one of the other two pass through. Any swap is instantaneous, which means that you may perform multiple swaps at the same time, but each one will count as a separate swap.

Input

The first line of the input gives the number of test cases, CC test cases follow. Each test case starts with 4 integers on a line -- NKB and T. The next line contains the Ndifferent integers Xi, in increasing order. The line after that contains the N integers Vi. All distances are in meters; all speeds are in meters per second; all times are in seconds.

Output

For each test case, output one line containing "Case #x: S", where x is the case number (starting from 1) and S is the smallest number of required swaps, or the word "IMPOSSIBLE".

Limits

1 ≤ C ≤ 100;
1 ≤ B ≤ 1,000,000,000;
1 ≤ T ≤ 1,000;
0 ≤ Xi < B;
1 ≤ Vi ≤ 100;
All the Xi's will be distinct and in increasing order.

Small dataset

1 ≤ N ≤ 10;
0 ≤ K ≤ min(3, N);

Large dataset

1 ≤ N ≤ 50;
0 ≤ K ≤ N;

Sample

Input 
 
Output 
 
3
5 3 10 5
0 2 5 6 7
1 1 1 1 4
5 3 10 5
0 2 3 5 7
2 1 1 1 4
5 3 10 5
0 2 3 4 7
2 1 1 1 4
Case #1: 0
Case #2: 2
Case #3: IMPOSSIBLE

 

Solution

vector<int>X;
vector<int>V;
vector<pair<int, int>>ck; int solve(int N, int K, int B, int T1)
{
int sw = ;
int slow = ;
for (int i = N - ; i >= ; i--) {
if (ck[i].first + T1 * ck[i].second >= B) {
K--;
sw += slow; if (!K)
break; } else {
slow++;
}
} if (K)
return -; return sw;
} int main()
{
freopen("in.in", "r", stdin);
if (WRITE_OUT_FILE)
freopen("out.out", "w", stdout); int T;
scanf("%d\n", &T);
if (!T) {
cerr << "Check input!" << endl;
exit();
} for (int t = ; t <= T; t++) {
if (WRITE_OUT_FILE)
cerr << "Solving: #" << t << " / " << T << endl; int N, K, B, T1;
scanf("%d %d %d %d\n", &N, &K, &B, &T1); X.clear();
V.clear();
ck.clear(); for (int i = ; i < N; i++) {
int x;
scanf("%d", &x); X.push_back(x);
} for (int i = ; i < N; i++) {
int v;
scanf("%d", &v); V.push_back(v);
} for (int i = ; i < N; i++) {
ck.push_back(pair<int, int>(X[i], V[i]));
} sort(ck.begin(), ck.end()); auto result = solve(N, K, B, T1); if (result >= ) {
printf("Case #%d: %d\n", t, result);
} else {
printf("Case #%d: IMPOSSIBLE\n", t);
} } fclose(stdin);
if (WRITE_OUT_FILE)
fclose(stdout); return ;
}

最新文章

  1. 如何知道SQL Server机器上有多少个NUMA节点
  2. JavaScript基础知识汇总
  3. Objective-C( Foundation框架 一 数组(NSMutableArray))
  4. 个性二维码开源专题&lt;液化/圆角/效果&gt;
  5. linux下查看分区信息和剩余空间大小
  6. Ionic 弹出窗
  7. sockaddr_u详解
  8. Redis之PHP操作
  9. 11 吐司 Toast 代码案例
  10. FFmpeg源代码简单分析:内存的分配和释放(av_malloc()、av_free()等)
  11. rest-framework之解析器
  12. RDD
  13. 4.mycat部署
  14. 浅谈JS的数组遍历方法
  15. iptables为什么需要增加loopback回环的规则
  16. verilog实现中值滤波
  17. leetCode 557. Reverse Words in a String I
  18. python学习笔记12-深浅拷贝
  19. Linux-使用ctags、vim查看数据类型所在头文件
  20. install_github安装错误解决方法

热门文章

  1. django revision
  2. The Perfect Stall (incomplete)
  3. localResizeIMG
  4. 【云计算】docker run详解
  5. ReverseString
  6. iOS 中通过使用Google API获得Google服务
  7. codeforces 479B Towers 解题报告
  8. 理解LoadRunner中的局部变量和全局变量
  9. JUC回顾之-ScheduledThreadPoolExecutor底层实现原理和应用
  10. Android中获取蓝牙log