codeforces C. Kuroni and Impossible Calculation
12686 단어 codeforces
time limit per test1 second memory limit per test256 megabytes inputstandard input outputstandard output To become the king of Codeforces, Kuroni has to solve the following problem.
He is given n numbers a1,a2,…,an. Help Kuroni to calculate ∏1≤i
If you are not familiar with short notation, ∏1≤i
Input
The first line contains two integers n, m (2≤n≤2⋅105, 1≤m≤1000) — number of numbers and modulo.
The second line contains n integers a1,a2,…,an (0≤ai≤109).
Output
Output the single number — ∏ 1 ≤ i < j ≤ n ∣ a i − a j ∣ m o d m\prod_{1≤i∏1≤i
input
2 10 8 5
output
3
input
3 12 1 4 5
output
0
input
3 7 1 4 9
output
1
Note
In the first sample, |8−5|=3≡3mod10.
In the second sample, |1−4|⋅|1−5|⋅|4−5|=3⋅4⋅1=12≡0mod12.
In the third sample, |1−4|⋅|1−9|⋅|4−9|=3⋅8⋅5=120≡1mod7.
제목:
∏ 1 ≤ i < j ≤ n\a i - a j\m\prod 계산{1≤i∏1≤i
만약에 순수한 폭력을 사용한다면 2*105는 시간을 초과할 것이다. 그러나 여기에 비둘기 둥지의 정리와 모형 추출 연산이 있다. (a%mod-b%mod)+mod)%mod =(a-b+mod)%mod가 있기 때문에 모든 수를 남긴 후에 n을 넣어 m을 초과하면 반드시 하나가 반복된다. 중복되면 상감은 0이다. 그러면 모형을 추출하는 것은 반드시 0이다. 이것이 바로 비둘기 둥지의 원리이다. 만약 그렇게 하지 않는다면 여기,이렇게 최악의 상황은 O(100002)입니다. 그리고 폭력을 하면 됩니다.
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;
typedef long long ll;
template <class T>
inline void read(T &ret) {
char c;
int sgn;
if (c = getchar(), c == EOF) return ;
while (c != '-' && (c < '0' || c > '9')) c = getchar();
sgn = (c == '-') ? -1:1;
ret = (c == '-') ? 0:(c - '0');
while (c = getchar(), c >= '0' && c <= '9') ret = ret * 10 + (c - '0');
ret *= sgn;
return ;
}
inline void out(int x) {
if (x > 9) out(x / 10);
putchar(x % 10 + '0');
}
const int maxn = 2e+5 + 10;
int a[maxn];
int main() {
int n, m;
read(n), read(m);
for (int i = 0; i < n; i++) read(a[i]);
if (n > m) {
printf("0");
return 0;
}
int ans = 1;
for (int i = 0; i < n; i++) {
for (int j = i + 1; j < n; j++) {
ans = (ans * (abs(a[i] - a[j]) % m)) % m;
}
}
printf("%d", ans);
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Codeforces Round #715 Div. 2C The Sports Festival: 구간 DP전형구간 DP의 초전형. 이하, 0-indexed. 입력을 정렬하여 어디서나 시작하고 최적으로 좌우로 계속 유지하면 좋다는 것을 알 수 있습니다. {2000})$의 주문이 된다. 우선, 입력을 소트하여 n개의 요소를 $...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.