# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1117261 | imarn | Sightseeing in Kyoto (JOI22_kyoto) | C++14 | 117 ms | 17856 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<bits/stdc++.h>
#define ll long long
#define pii pair<int,int>
#define pll pair<ll,ll>
#define plx pair<ll,int>
#define f first
#define s second
#define pb push_back
#define all(x) x.begin(),x.end()
#define szz(r) (ll)r.size()
#define vi vector<int>
#define vvi vector<vi>
#define pp pair<ll,int>
#define ub(x,i) upper_bound(all(x),i)-x.begin()
using namespace std;
struct line{
ll a,b,c,d;
bool operator<(const line &o)const{
return a*o.b<o.a*b;
}
};
const int mxn=1e5+5;
bool dla[mxn]{0},dlb[mxn]{0};
int main(){
ios_base::sync_with_stdio(0);cin.tie(0);
int h,w;cin>>h>>w;
ll a[h+1],b[w+1];
int la[h+2],ra[h+2],lb[w+2],rb[w+2];
for(int i=1;i<=h;i++)cin>>a[i],la[i]=i-1,ra[i]=i+1;
for(int i=1;i<=w;i++)cin>>b[i],lb[i]=i-1,rb[i]=i+1;
Compilation message (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... |