zoukankan      html  css  js  c++  java
  • google在线測试练习题1

    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;
    }


  • 相关阅读:
    Tip#66:你知道吗?如何在输入属性值时自动插入双引号
    使用 Apache MINA 开发高性能网络应用程序(转载)
    Faceted Search with Solr
    solr dataimport 数据导入源码分析 补充
    Apache Tika
    MiddlegenHibernate的配制和使用(jtds连接sqlserver数据库)
    汉语转拼音之pinyin4j(转载)
    使用Tika进行非结构化内容的读写1
    使用Java NIO编写高性能的服务器
    solr dataimport 数据导入源码分析(十)总结
  • 原文地址:https://www.cnblogs.com/bhlsheji/p/5324971.html
Copyright © 2011-2022 走看看