# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
437395 | drkarlicio2107 | Lottery (CEOI18_lot) | C++14 | 580 ms | 508 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std; int ans [110][10010]; int l[10010]; vector < pair <int, int> > qr; int prvi_veci [10010];
int main(){
int n, d; cin >> n >> d;
for (int i=0; i<n; i++) cin >> l[i];
int q; cin >> q;
for (int i=0; i<q; i++){
int k; cin >> k;
qr.push_back (make_pair(k, i));
}
for (int i=0; i<n+10; i++) prvi_veci[i]=-1;
sort (qr.begin(), qr.end()); int last=-1;
for (int i=0; i<qr.size(); i++){
for (int j=qr[i].first; j>last; j--) prvi_veci [j]=qr[i].second;
last=qr [i].first;
}
for (int i=1; i<n-d+1; i++) {
int l1=0; int r1=d-1;
int l2=i; int r2=i+d-1;
int met=0;
for (int j=0; j<d; j++) {
if (l[l1+j]!=l[l2+j]) met++;
}
int pos=prvi_veci[met];
if (pos!=-1) ans [pos][l2]+=1;
if (pos!=-1) ans [pos][l1]+=1;
while (r2!=n-1){
if (l[l1]!=l[l2]) met--;
if (l[r1+1]!=l[r2+1]) met++;
l1++; r1++; l2++; r2++;
int pos=prvi_veci[met];
if (pos!=-1) ans [pos][l2]+=1;
if (pos!=-1) ans [pos][l1]+=1;
}
}
for (int j=0; j<n-d+1; j++){
int sol=ans [0][j];
for (int i=1; i<q; i++){
sol+=ans [i][j];
ans [i][j]=sol;
}
}
for (int i=0; i<q; i++) {
for (int j=0; j<n-d+1; j++) cout << ans [i][j] << " ";
cout << endl;
}
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |