# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
136509 | 2019-07-25T12:02:45 Z | TadijaSebez | Two Dishes (JOI19_dishes) | C++11 | 10000 ms | 40588 KB |
#include <bits/stdc++.h> using namespace std; #define ll long long #define pb push_back const int N=1000050; const int M=2*N; const ll inf=1e18; ll a[N],s[N],p[N],b[N],t[N],q[N]; vector<pair<ll,ll>> Qs[N]; struct BruteForce { ll a[N]; int n; BruteForce(){} void init(int _n){ n=_n;for(int i=0;i<=n;i++) a[i]=0;} void Add(int qs, int qe, ll f){ for(int i=qs;i<=qe;i++) a[i]+=f;} void Set(int qs, int qe, ll x){ for(int i=qs;i<=qe;i++) a[i]=max(a[i],x);} int Get(int qi){ return a[qi];} } STB; int main() { int n,m; scanf("%i %i",&n,&m); for(int i=1;i<=n;i++) scanf("%lld %lld %lld",&a[i],&s[i],&p[i]),a[i]+=a[i-1]; for(int i=1;i<=m;i++) scanf("%lld %lld %lld",&b[i],&t[i],&q[i]),b[i]+=b[i-1]; ll sum=0; STB.init(m); for(int i=1;i<=m;i++) { t[i]=upper_bound(a,a+1+n,t[i]-b[i])-a; if(t[i]) { sum+=q[i]; Qs[t[i]].pb({i,-q[i]}); } } for(int i=1;i<=n;i++) { s[i]=upper_bound(b,b+1+m,s[i]-a[i])-b; if(s[i]) Qs[i].pb({s[i],p[i]}); sort(Qs[i].rbegin(),Qs[i].rend()); for(auto qu:Qs[i]) { int p=qu.first-1; ll f=qu.second; STB.Add(0,p,f); ll g=STB.Get(p); STB.Set(p-1,m,g); } } printf("%lld\n",STB.Get(m)+sum); return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 10046 ms | 40588 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 23 ms | 23900 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 23 ms | 23900 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 23 ms | 23900 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 23 ms | 23900 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 23 ms | 23900 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 10046 ms | 40588 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 10046 ms | 40588 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |