| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 108040 | aer0park | XCorr (KOI18_XCorr) | C++14 | 5 ms | 512 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define f first
#define s second
using namespace std;
typedef long long ll;
typedef pair<ll,ll> pi;
ll n,m,mx,mn,anw;
vector<pi> px,y;
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL);
cin>>n;
for(int i=0;i<n;i++)
{
ll a,b;cin>>a>>b;
if(i==0)
px.push_back({a,b});
else
px.push_back({a,px[i-1].s+b});
}
cin>>m;
for(int i=0;i<m;i++)
{
ll a,b;cin>>a>>b;
y.push_back({a,b});
}
cin>>mn>>mx;
for(int i=0;i<m;i++)
{
ll nw=y[i].f,nv=y[i].s,a=0,b=0;
if(nw+mn>=0)
a=lower_bound(px.begin(),px.end(),pi(nw+mn,0))-px.begin();
if(nw+mx>=0)
{
b=lower_bound(px.begin(),px.end(),pi(nw+mx,0))-px.begin();
if(b==0&&px[b].first>nw+mx)
continue;
if(px[b].first>nw+mx||b==px.size())
b=b-1;
}
else
continue;
if(a==0)
anw+=nv*px[b].second;
if(a!=0)
anw+=nv*(px[b].second-px[a-1].second);
}
cout<<anw;
return 0;
}컴파일 시 표준 에러 (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... | ||||
