计蒜客--U型数字

思路:暴力即可,对每一个数量级的数字枚举每一位,判断是否满足U形数字.

最初思路:转换为数字数组,这样判断很难受.

#include<iostream>
#include<cstring>
#include<cstdio> 
#include<algorithm>
#include<stack>
using namespace std;
bool check(int x){
	if(x<1000){
		int a=x%10;
		int b=(x/10)%10;
		int c=(x/100);
		if(a>b&&c>b)	return true;
		else return false;
	}else 	if(x<10000){
		int a=x%10;
		int b=(x/10)%10;
		int c=(x/100)%10;
		int d=(x/1000);
		if(a>b&&d>c&&b!=c)	return true;
		else return false;
	}else if(x<100000){
		int a=x%10;
		int b=(x/10)%10;
		int c=(x/100)%10;
		int d=(x/1000)%10;
		int e=(x/10000);
		if(a>b&&b<c&&c<d&&d<e) return true;
		else if(a>b&&b>c&&c<d&&d<e) return true;
		else if(a>b&&b>c&&c>d&&d<e) return true;
		else return false;
	}
}
int main(){
	int ans=0;
	for(int i=101;i<100000;i++)
		if(check(i)){
			ans++;
		}
	cout<<ans<<endl;
} 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值