# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
71027 | 2018-08-24T03:12:48 Z | sebinkim | Lottery (CEOI18_lot) | C++14 | 617 ms | 820 KB |
#include <bits/stdc++.h> using namespace std; typedef pair <int, int> pii; int A[10101], T[10101], S[10101]; pii Q[111]; int ans[111][10101], print[111][10101]; int n, l, q; int main() { int i, j; scanf("%d%d", &n, &l); for(i=1; i<=n; i++){ scanf("%d", A+i); } scanf("%d", &q); for(i=1; i<=q; i++){ scanf("%d", &Q[i].first); Q[i].second = i; } sort(Q + 1, Q + q + 1); for(i=1; i<=q; i++){ T[Q[i].first] ++; } for(i=1; i<=n; i++){ T[i] += T[i - 1]; } for(i=1; i<n; i++){ for(j=0; j<=i+1; j++) S[j] = 0; for(j=i; j>=1; j--){ // (j, n - i + j) if(A[j] == A[n - i + j]){ S[j] ++; S[max(j - l, 0)] --; } S[j] += S[j + 1]; if(n - i + j <= n - l + 1) ans[T[l - S[j]]][j] ++; ans[T[l - S[j]]][n - i + j] ++; } } for(i=1; i<=q; i++){ for(j=1; j<=n; j++){ ans[i][j] += ans[i - 1][j]; print[Q[i].second][j] = ans[i][j]; } } for(i=1; i<=q; i++){ for(j=1; j<=n-l+1; j++){ printf("%d ", print[i][j]); } printf("\n"); } return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 3 ms | 376 KB | Output is correct |
2 | Incorrect | 4 ms | 616 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 3 ms | 376 KB | Output is correct |
2 | Incorrect | 4 ms | 616 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 617 ms | 820 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 617 ms | 820 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 3 ms | 376 KB | Output is correct |
2 | Incorrect | 4 ms | 616 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |