补全一个小程序关于导弹拦截问题

 A military contractor for the Department of Defense has just completed a series of preliminary tests for a new defensive missile called the CATCHER which is capable of intercepting multiple incoming offensive missiles. The CATCHER is supposed to be a remarkable defensive missile. It can move forward, laterally, and downward at very fast speeds, and it can intercept an offensive missile without being damaged. But it does have one major flaw. Although it can be fired to reach any initial elevation, it has no power to move higher than the last missile that it has intercepted. The tests which the contractor completed were computer simulations of battlefield and hostile attack conditions. Since they were only preliminary, the simulations tested only the CATCHER’s vertical movement capability. In each simulation, the CATCHER was fired at a sequence of offensive missiles which were incoming at fixed time intervals. The only information available to the CATCHER for each incoming missile was its height at the point it could be intercepted and where it appeared in the sequence of missiles. Each incoming missile for a test run is represented in the sequence only once. The result of each test is reported as the sequence of incoming missiles and the total number of those missiles that are intercepted by the CATCHER in that test. The General Accounting Office wants to be sure that the simulation test results submitted by the military contractor are attainable, given the constraints of the CATCHER. You must write a program that takes input data representing the pattern of incoming missiles for several different tests and outputs the maximum numbers of missiles that the CATCHER can intercept for those tests. For any incoming missile in a test, the CATCHER is able to intercept it if and only if it satisfies one of these two conditions: 1.    The incoming missile is the first missile to be intercepted in this test.-or-2.    The missile was fired after the last missile that was intercepted and it is not higher than the last missile which was intercepted. Input and OutputThe input data for any test consists of a sequence of one or more non-negative integers, all of which are less than or equal to 32,767, representing the heights of the incoming missiles (the test pattern). The last number in each sequence is -1, which signifies the end of data for that particular test and is not considered to represent a missile height. The end of data for the entire input is the number -1 as the first value in a test; it is not considered to be a separate test. Output for each test consists of a test number (Test #1, Test #2, etc.) and the maximum number of incoming missiles that the CATCHER could possibly intercept for the test. That maximum number appears after an identifying message. There must be at least one blank line between output for successive data sets. On the back of this page is a sample input file which consists of two different scenarios and the corresponding output.  NOTE:    The number of missiles for any given test is not limited. If your solution is based on an inefficient algorithm, it may not execute in the allotted time. Sample Input38920715530029917015865-1233421-1-1 Output for the Sample InputTest #1:  maximum possible interceptions: 6 Test #2:  maximum possible interceptions: 2

text
389
207
155
300
299
170
158
65
-1
233
42
1
-1

img


-1
1
2 #include <stdio.h>

3 #include <stdlib.h>

4

5 #define N 100

6

7 // 函数声明

8 void sort( int a[], int n );

9 int judge( int a[], int n );

10 int max( int a, int b);

11

12 int main( )

13 {

14 int j, m, n = 0;

15 int a[ N ];

16

17 FILE* fq;

18 fq = fopen( "input.txt", "r" ); // input文件与源程序文件在同一目录下

19 // 1. 判断文件打开是否成功

20

21

22

23

24 // 从文件中读取数据,-1结束

25 m = 1; // 测试数据的组号

26 while( 1 )

27 {

28 // 将一组测试数据读入数组 a 中, a[0]不用,从a[1]开始存放

29 fscanf( fq, "%d", &a[1] );

30 if( a[1] == -1 )

31 break;

32

33 // 2. 读取一组数据,直到出现 -1

34

35

36

37

38

39

40 // 显示读入的一组数据

41 printf("Test #%d : ", m++ );

42 for( j = 1; j <= n; j++ )

43 printf( "%d ", a[j] );

44

45 //调用函数judge, 处理这组数据

46 printf("\n maximum possible interceptions: %d\n\n",

47 judge( a, n ) );

48 }

49

50 fclose( fq );

51 return 0;

52 }

53

54

55 // 对一组数据进行判断

56 int judge( int a[], int n )

57 {

58

59 return 0;

60 }

img

参考下