#P13423. [COCI 2019/2020 #4] Spiderman

[COCI 2019/2020 #4] Spiderman

题目描述

Little Ivan likes to play Yamb and read Marvel superhero comics. His favorite superhero is spider-man, a friendly neighbourhood teenager named Peter Parker who got his superpowers via a radioactive spider bite. Ivan fantasizes that one day he will be able to jump from one skyscraper to another, just like spider-man does in the comics. During one such fantasy, he fell asleep.

In his dream he was no longer named Ivan, his name was Peter Parkour1^{1} and, you guessed it, he was able to use his parkour skills to jump between skyscrapers. He quickly realized that there are exactly NN skyscrapers in his surroundings and he somehow knew that ii-th of those skyscrapers is hih_i meters tall. He knows that he is able to jump from the ii-th skyscraper to the jj-th skyscraper if the remainder when dividing hih_i with hjh_j is equal to KK. Help Ivan determine, for every skyscraper, the number of other skyscrapers he can jump to.

输入格式

The first line contains two integers NN (1N3000001 \leq N \leq 300\,000) and KK (0K<1060 \leq K < 10^6) from the task description.

The next line contains NN integers hih_i (1hi1061 \leq h_i \leq 10^6) from the task description.

输出格式

In a single line you should output NN space-separated integers such that the ii-th of those integers represents the number of different skyscrapers on which Peter Parkour can jump on if he jumps from the ii-th skyscraper.

2 1
5 5
0 0
6 3
4 3 12 6 8 2
0 4 0 0 0 0
5 1
1 3 5 7 2
4 1 1 2 0

提示

Clarification of the third example:

  • From the first skyscraper of height 1 Peter can jump on any other skyscraper.
  • From the second skyscraper of height 3 Peter can jump only on a skyscraper of height 2.
  • From the third skyscraper of height 5 Peter can jump only on a skyscraper of height 2.
  • From the fourth skyscraper of height 7 Peter can jump on skyscrapers of heights 2 and 3.
  • From the fifth skyscraper of height 2 Peter cannot jump on any other skyscraper.

Scoring

  • In test cases worth a total of 1414 points, it will hold 1N20001 \leq N \leq 2\,000
  • In test cases worth an additional 1414 points, there will be at most 20002\,000 skyscrapers of different heights.
  • In test cases worth an additional 1414 points, it will hold K=0K = 0.