zoukankan      html  css  js  c++  java
  • Hello World! 2010年山东省第一届ACM大学生程序设计竞赛


    Hello World!

    Time Limit: 1000MS Memory limit: 65536K

    题目描述

    We know that Ivan gives Saya three problems to solve (Problem F), and this is the first problem.
    We need a programmer to help us for some projects. If you show us that you or one of your friends is able to program, you can pass the first hurdle.
    I will give you a problem to solve. Since this is the first hurdle, it is very simple.”
    We all know that the simplest program is the “Hello World!” program. This is a problem just as simple as the “Hello World!”
    In a large matrix, there are some elements has been marked. For every marked element, return a marked element whose row and column are larger than the showed element’s row and column respectively. If there are multiple solutions, return the element whose row is the smallest; and if there are still multiple solutions, return the element whose column is the smallest. If there is no solution, return -1 -1.
    Saya is not a programmer, so she comes to you for help
    Can you solve this problem for her?

    输入

    The input consists of several test cases.
    The first line of input in each test case contains one integer N (0<N1000), which represents the number of marked element.
    Each of the next N lines containing two integers r and c, represent the element’s row and column. You can assume that 0<r,c300. A marked element can be repeatedly showed.
    The last case is followed by a line containing one zero.

    输出

    For each case, print the case number (1, 2 …), and for each element’s row and column, output the result. Your output format should imitate the sample output. Print a blank line after each test case.

    示例输入

    3
    1 2
    2 3
    2 3
    
    0

    示例输出

    Case 1:
    2 3
    -1 -1
    -1 -1
    #include<iostream>
    #include<algorithm> 
    using namespace std;
    struct T 
    {      int w,l,s;  
    }a[5010];
    bool cmp(T a,T b)  
    {      
    	if(a.l==b.l)  
    		return a.w<b.w;     
    	return a.l<b.l;  }    
    int main()
    {
    	bool p;
    	int i,j,n,k=1,m;
    	while(cin>>n&&n)
    	{
    	
    		p=0;
    		for(i=0;i<n;i++)
    		{cin>>a[i].l>>a[i].w;a[i].s=i;}
    		 sort(a,a+n,cmp);
    		// cout<<endl;
    		 	cout<<"Case "<<k<<':'<<endl;
    			k++;
    		 for(j=0;j<n;j++)
    		 {p=0;
    		  for(i=0;i<n;i++)
    		  {if(a[i].s==j)
    		  {
    		  for(m=i+1;m<n;m++)
    		  if(a[m].l>a[i].l&&a[m].w>a[i].w)
    		  {cout<<a[m].l<<' '<<a[m].w<<endl;p=1;break;}
    		  if(p==0)
    		  {cout<<-1<<' '<<-1<<endl;break;}
    		 
    		  }}
    		 }
    		 cout<<endl;
    	}
    
    return 0;
    }

  • 相关阅读:
    vue自定义select组件
    基于better-scroll封装一个上拉加载下拉刷新组件
    vue自定义tap指令
    vue实现分页器(仿element)
    js异步队列之理解
    Element源码阅读(2)
    Element源码阅读(1)
    unity3d模仿魔兽世界鼠标对游戏操作
    unity3d制作小地图(MiniMap)的简单Demo
    利用unity3d自带的CharacterController包制作第一人称控制模型的简单Demo
  • 原文地址:https://www.cnblogs.com/oversea201405/p/3766941.html
Copyright © 2011-2022 走看看