zoukankan      html  css  js  c++  java
  • hdoj--3183--A Magic Lamp(贪心)

    A Magic Lamp

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
    Total Submission(s): 2584    Accepted Submission(s): 1010



    Problem Description
    Kiki likes traveling. One day she finds a magic lamp, unfortunately the genie in the lamp is not so kind. Kiki must answer a question, and then the genie will realize one of her dreams.
    The question is: give you an integer, you are allowed to delete exactly m digits. The left digits will form a new integer. You should make it minimum.
    You are not allowed to change the order of the digits. Now can you help Kiki to realize her dream?
     

    Input
    There are several test cases.
    Each test case will contain an integer you are given (which may at most contains 1000 digits.) and the integer m (if the integer contains n digits, m will not bigger then n). The given integer will not contain leading zero.
     

    Output
    For each case, output the minimum result you can get in one line.
    If the result contains leading zero, ignore it.
     

    Sample Input
    178543 4 1000001 1 100001 2 12345 2 54321 2
     

    Sample Output
    13 1 0 123 321
     

    Source
    HDU 2009-11 Programming Contest

    #include<stdio.h>
    #include<string.h>
    char s[1010];
    int vis[1010];
    int a[1010];
    int main()
    {
    	int i,j,k,l,n,m;
    	while(scanf("%s",s)!=EOF)
    	{		
    		scanf("%d",&m);		
    		l=strlen(s);		
    		for(i=0;i<l;i++)
    			a[i]=s[i]-'0';
    		n=0;
    		int mm=m;
    		memset(vis,0,sizeof(vis));
    		while(mm--)
    		{
    			for(i=0;i<l-1;i++)
    			{
    				if(!vis[i])
    				{
    					j=i+1;
    					while(vis[j])
    						j++;
    					if(a[i]>a[j])
    					{
    						vis[i]=1;
    						n++;
    						break;
    					}
    				}
    			}
    		}
    		int kk=m-n;
    		for(i=l-1;i>=0;i--)
    		{
    			if(!vis[i]&&kk)
    			{
    				vis[i]=1;
    				kk--;
    			}
    		}
    		int flag=0;
    		int p=0;
    		for(i=0;i<l;i++)
    		{
    			if(!vis[i])
    			{
    				if(s[i]!='0')
    					flag=1;
    				if(flag)
    				{
    					printf("%c",s[i]);
    					p++;
    				}
    			}
    		}
    		if(p==0)
    			printf("0");
    		printf("
    ");
    	}
    	return 0;
    }


  • 相关阅读:
    Linux基础命令题(ps/ls + grep)
    Operator Overloading in C++
    C++中class和struct的区别
    poj1110double vision搜索
    poj1321棋盘递归搜索
    vim窗口分割/切换
    xclipmore about copy&paste命令行粘贴
    [转载]怎样花两年时间去面试一个人
    最优二叉查找树optimalBSTC++实现
    vim复制粘贴——系统剪贴板
  • 原文地址:https://www.cnblogs.com/playboy307/p/5273675.html
Copyright © 2011-2022 走看看