HLG 1118 火柴棒等式 模擬

2021-07-05 14:50:25 字數 1746 閱讀 4558

火柴棒等式

time limit: 1000 ms

memory limit: 65536 k

total submit: 276(94 users)

total accepted: 115(88 users)

rating:

special judge: no

description

給你n根火柴棍,你可以拼出多少個形如「a+b=c」的等式?等式中的a、b、c是用火柴棍拼出的整數(若該數非零,則最高位不能是0)。用火柴棍拼數字0-9的拼法如圖所示:

注意:

1. 加號與等號各自需要兩根火柴棍

2. 如果a≠b,則a+b=c與b+a=c視為不同的等式(a、b、c>=0)

3. n根火柴棍必須全部用上

input

多行,每行乙個整數n(n<=24)。

output

每個一行,表示能拼成的不同等式的數目。

sample input

14

18

sample output

2

9

hint

n=14時有兩個等式:

0+1=1

1+0=1。

n=18時9個等式為:

0+4=4

0+11=11

1+10=11

2+2=4

2+7=9

4+0=4

7+2=9

10+1=11

11+0=11

author

noip2008提高組

accode:

#pragma warning(disable:4786)//使命名長度不受限制

#pragma comment(linker, "/stack:102400000,102400000")//手工開棧

#include #include #include #include #include #include #include #include #include #include #include #define rd(x) scanf("%d",&x)

#define rd2(x,y) scanf("%d%d",&x,&y)

#define rds(x) scanf("%s",x)

#define rdc(x) scanf("%c",&x)

#define ll long long int

#define maxn 3000

#define mod 1000000007

#define inf 0x3f3f3f3f //int 最大值

#define for(i,f_start,f_end) for(int i=f_start;i<=f_end;++i)

#define mt(x,i) memset(x,i,sizeof(x))

#define pi acos(-1.0)

#define e exp(1)

using namespace std;

int match[10]=,a[maxn];

int main(){

int n;

for(int i=0;i<10;i++)a[i]=match[i];

for(int i=10;i

A 火柴棒等式 HRBUST 1118

給你n根火柴棍,你可以拼出多少個形如 a b c 的等式?等式中的a b c是用火柴棍拼出的整數 若該數非零,則最高位不能是0 用火柴棍拼數字0 9的拼法如圖所示 注意 1.加號與等號各自需要兩根火柴棍 2.如果a b,則a b c與b a c視為不同的等式 a b c 0 3.n根火柴棍必須全部用...

火柴棒等式

題目描述 給你n根火柴棍,你可以拼出多少個形如 a b c 的等式?等式中的a b c是用火柴棍拼出的整數 若該數非零,則最高位不能是0 用火柴棍拼數字0 9的拼法如圖所示 注意 加號與等號各自需要兩根火柴棍 如果a b,則a b c與b a c視為不同的等式 a b c 0 n根火柴棍必須全部用上...

火柴棒等式

description 給你n根火柴棍,你可以拼出多少個形如 a b c 的等式?等式中的a b c是用火柴棍拼出的整數 若該數非零,則最高位不能是0 用火柴棍拼數字0 9的拼法如圖所示 注意 1.加號與等號各自需要兩根火柴棍 2.如果a b,則a b c與b a c視為不同的等式 a b c 0 ...