CF1725C.Circular Mirror

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Pak Chanek has a mirror in the shape of a circle. There are NN lamps on the circumference numbered from 11 to NN in clockwise order. The length of the arc from lamp ii to lamp i+1i+1 is DiD_i for 1iN11 \leq i \leq N-1 . Meanwhile, the length of the arc between lamp NN and lamp 11 is DND_N .

Pak Chanek wants to colour the lamps with MM different colours. Each lamp can be coloured with one of the MM colours. However, there cannot be three different lamps such that the colours of the three lamps are the same and the triangle made by considering the three lamps as vertices is a right triangle (triangle with one of its angles being exactly 9090 degrees).

The following are examples of lamp colouring configurations on the circular mirror.

Figure 1. an example of an incorrect colouring because lamps 11 , 22 , and 33 form a right triangleFigure 2. an example of a correct colouringFigure 3. an example of a correct colouringBefore colouring the lamps, Pak Chanek wants to know the number of distinct colouring configurations he can make. Count the number of distinct possible lamp colouring configurations, modulo 998244353998\,244\,353 .

输入格式

The first line contains two integers NN and MM ( 1N31051 \le N \le 3 \cdot 10^5 , 2M31052 \le M \le 3 \cdot 10^5 ) — the number of lamps in the mirror and the number of different colours used.

The second line contains NN integers D1,D2,,DND_1, D_2, \ldots, D_N ( 1Di1091 \le D_i \le 10^9 ) — the lengths of the arcs between the lamps in the mirror.

输出格式

An integer representing the number of possible lamp colouring configurations, modulo 998244353998\,244\,353 .

输入输出样例

  • 输入#1

    4 2
    10 10 6 14

    输出#1

    10
  • 输入#2

    1 2
    10

    输出#2

    2

说明/提示

In the first example, all correct lamp colouring configurations are [1,1,2,1][1, 1, 2, 1] , [1,1,2,2][1, 1, 2, 2] , [1,2,1,2][1, 2, 1, 2] , [1,2,2,1][1, 2, 2, 1] , [1,2,2,2][1, 2, 2, 2] , [2,1,1,1][2, 1, 1, 1] , [2,1,1,2][2, 1, 1, 2] , [2,1,2,1][2, 1, 2, 1] , [2,2,1,1][2, 2, 1, 1] , and [2,2,1,2][2, 2, 1, 2] .

首页