google在线测试练习题1

21 篇文章 0 订阅

Problem

You receive a credit C at a local store and would like to buy two items. You first walk through the store and create a list L of all available items. From this list you would like to buy two items that add up to the entire value of the credit. The solution you provide will consist of the two integers indicating the positions of the items in your list (smaller number first).

Input

The first line of input gives the number of cases, NN test cases follow. For each test case there will be:

  • One line containing the value C, the amount of credit you have at the store.
  • One line containing the value I, the number of items in the store.
  • One line containing a space separated list of I integers. Each integer P indicates the price of an item in the store.
  • Each test case will have exactly one solution.

Output

For each test case, output one line containing "Case #x: " followed by the indices of the two items whose price adds up to the store credit. The lower index should be output first.

Limits

5 ≤ C ≤ 1000
1 ≤ P ≤ 1000

Small dataset

N = 10
3 ≤ I ≤ 100

Large dataset

N = 50
3 ≤ I ≤ 2000

从文件输入,输出到文件中。代码:

#include<iostream>
#include<fstream>
using namespace std;
void quick_sort(int array[],int indexs[], int begin, int end)  
{  
    if(end > begin)  
    {  
        int pivot = begin;  
        int last_small = begin;  
        int i = end;  
        while(last_small != i)  
        {  
            if(array[i] <= array[pivot])  
            {  
                int temp = array[i];  
				int tmp = indexs[i];
                array[i] = array[++last_small];  
                array[last_small] = temp; 
				indexs[i] = indexs[last_small];
				indexs[last_small] = tmp;
            }  
            else  
                i--;  
        }  
        int tmp = array[pivot];  
        array[pivot] = array[last_small];  
        array[last_small] = tmp;  
		int temp = indexs[pivot];
		indexs[pivot] = indexs[last_small];
		indexs[last_small] = temp;
        quick_sort(array, indexs, begin, last_small - 1);  
        quick_sort(array, indexs, last_small + 1, end);  
    }  
}  
int main()
{
	int sum, n;
	int array[2005];
	int n_case;
	ifstream file2("A-large-practice.in");
	ofstream file1("resulta2.txt");
	file2 >> n_case;
	for(int i_case = 1; i_case <= n_case; i_case++)
	{
		file2 >> sum;
		file2 >> n;
		for(int i = 0; i < n; i++)
			file2 >> array[i];
		int indexs[2005];
		for(int i = 0; i < n; i++)
			indexs[i] = i + 1;
		quick_sort(array, indexs, 0, n - 1);//sort the list
		int front = 0;
		int back = n - 1;
		while(true)
		{
			if(array[front] + array[back] == sum)//found
				break;
			else if(array[front] + array[back] > sum)
				back--;
			else front++;
		}
		if(indexs[front] > indexs[back])
		{
			int tmp = indexs[front];
			indexs[front] = indexs[back];
			indexs[back] = tmp;
		}
		file1 << "Case #" << i_case << ": ";
		file1 << indexs[front] << ' ' << indexs[back] << endl;
	}
	system("pause");
	return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值