CF690D3.The Wall (hard)

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

So many wall designs to choose from! Even modulo 106+310^{6}+3 , it's an enormous number. Given that recently Heidi acquired an unlimited supply of bricks, her choices are endless! She really needs to do something to narrow them down.

Heidi is quick to come up with criteria for a useful wall:

  • In a useful wall, at least one segment is wider than WW bricks. This should give the zombies something to hit their heads against. Or,
  • in a useful wall, at least one column is higher than HH bricks. This provides a lookout from which zombies can be spotted at a distance.

This should rule out a fair amount of possibilities, right? Help Heidi compute the number of useless walls that do not confirm to either of these criteria. In other words, a wall is useless if every segment has width at most WW and height at most HH .

Parameter CC , the total width of the wall, has the same meaning as in the easy version. However, note that the number of bricks is now unlimited.

Output the number of useless walls modulo 106+310^{6}+3 .

输入格式

The first and the only line of the input contains three space-separated integers CC , WW and HH ( 1<=C<=1081<=C<=10^{8} , 1<=W,H<=1001<=W,H<=100 ).

输出格式

Output the number of different walls, modulo 106+310^{6}+3 , which are useless according to Heidi's criteria.

输入输出样例

  • 输入#1

    1 1 1
    

    输出#1

    2
    
  • 输入#2

    1 2 2
    

    输出#2

    3
    
  • 输入#3

    1 2 3
    

    输出#3

    4
    
  • 输入#4

    3 2 2
    

    输出#4

    19
    
  • 输入#5

    5 4 9
    

    输出#5

    40951
    
  • 输入#6

    40 37 65
    

    输出#6

    933869
    

说明/提示

If there is no brick in any of the columns, the structure is considered as a useless wall.

首页