제출 #443867

#제출 시각아이디문제언어결과실행 시간메모리
443867Khizri구경하기 (JOI13_watching)C++17
0 / 100
1098 ms60188 KiB
#include <bits/stdc++.h> using namespace std; //------------------------------DEFINE------------------------------ //****************************************************************** #define IOS ios_base::sync_with_stdio(false); cin.tie(0),cout.tie(0) #define ll long long #define pb push_back #define F first #define S second #define INF 1e18 #define all(v) (v).begin(),(v).end() #define rall(v) (v).rbegin(),(v).rend() #define pii pair<int,int> #define pll pair<ll,ll> #define OK cout<<"Ok"<<endl; #define MOD (ll)(1e9+7) #define endl "\n" //****************************************************************** //----------------------------FUNCTION------------------------------ //****************************************************************** ll gcd(ll a,ll b){ if(a>b) swap(a,b); if(a==0) return a+b; return gcd(b%a,a); } ll lcm(ll a,ll b){ return a/gcd(a,b)*b; } bool is_prime(ll n){ ll k=sqrt(n); if(n==2) return true; if(n<2||n%2==0||k*k==n) return false; for(int i=3;i<=k;i+=2){ if(n%i==0){ return false; } } return true; } //***************************************************************** //--------------------------MAIN-CODE------------------------------ const int mxn=2e5+5; ll t=1,n,arr[mxn],a,b; map<vector<int>,pair<bool,int>>mp; int check(int x,int y,ll dis,int ind,int pos){ if(mp[{x,y,dis,ind,pos}].F==true){ return mp[{x,y,dis,ind,pos}].S; } int nind=ind; if(pos==1){ ll k=arr[ind]+dis-1; for(int i=ind;i<=n;i++){ if(arr[i]<=k){ nind++; } } } else if(pos==2){ ll k=arr[ind]+2*dis-1; for(int i=ind;i<=n;i++){ if(arr[i]<=k){ nind++; } } } if(nind>n){ mp[{x,y,dis,ind,pos}].S=true; return mp[{x,y,dis,ind,pos}].S=1; } else{ if(x>0&&y>0){ mp[{x,y,dis,ind,pos}].S=true; return mp[{x,y,dis,ind,pos}].F=max(check(x-1,y,dis,nind,1),check(x,y-1,dis,nind,2)); } else if(x>0){ mp[{x,y,dis,ind,pos}].S=true; return mp[{x,y,dis,ind,pos}].F=check(x-1,y,dis,nind,1); } else if(y>0){ mp[{x,y,dis,ind,pos}].S=true; return mp[{x,y,dis,ind,pos}].F=check(x,y-1,dis,nind,2); } else{ mp[{x,y,dis,ind,pos}].S=true; return mp[{x,y,dis,ind,pos}].S=0; } } } void solve(){ cin>>n>>a>>b; for(int i=1;i<=n;i++){ cin>>arr[i]; } sort(arr+1,arr+n+1); ll l=0,r=1e9,k=0; while(l<=r){ ll m=(l+r)/2; //cout<<m<<endl; if(check(a,b,m,1,0)==1){ r=m-1; k=m; } else{ l=m+1; } } cout<<k<<endl; } int main(){ IOS; //cin>>t; while(t--){ solve(); } return 0; }

컴파일 시 표준 에러 (stderr) 메시지

watching.cpp: In function 'int check(int, int, long long int, int, int)':
watching.cpp:46:13: warning: narrowing conversion of 'dis' from 'long long int' to 'int' [-Wnarrowing]
   46 |  if(mp[{x,y,dis,ind,pos}].F==true){
      |             ^~~
watching.cpp:46:13: warning: narrowing conversion of 'dis' from 'long long int' to 'int' [-Wnarrowing]
watching.cpp:47:18: warning: narrowing conversion of 'dis' from 'long long int' to 'int' [-Wnarrowing]
   47 |   return mp[{x,y,dis,ind,pos}].S;
      |                  ^~~
watching.cpp:47:18: warning: narrowing conversion of 'dis' from 'long long int' to 'int' [-Wnarrowing]
watching.cpp:67:11: warning: narrowing conversion of 'dis' from 'long long int' to 'int' [-Wnarrowing]
   67 |   mp[{x,y,dis,ind,pos}].S=true;
      |           ^~~
watching.cpp:67:11: warning: narrowing conversion of 'dis' from 'long long int' to 'int' [-Wnarrowing]
watching.cpp:68:18: warning: narrowing conversion of 'dis' from 'long long int' to 'int' [-Wnarrowing]
   68 |   return mp[{x,y,dis,ind,pos}].S=1;
      |                  ^~~
watching.cpp:68:18: warning: narrowing conversion of 'dis' from 'long long int' to 'int' [-Wnarrowing]
watching.cpp:72:12: warning: narrowing conversion of 'dis' from 'long long int' to 'int' [-Wnarrowing]
   72 |    mp[{x,y,dis,ind,pos}].S=true;
      |            ^~~
watching.cpp:72:12: warning: narrowing conversion of 'dis' from 'long long int' to 'int' [-Wnarrowing]
watching.cpp:73:19: warning: narrowing conversion of 'dis' from 'long long int' to 'int' [-Wnarrowing]
   73 |    return mp[{x,y,dis,ind,pos}].F=max(check(x-1,y,dis,nind,1),check(x,y-1,dis,nind,2));
      |                   ^~~
watching.cpp:73:19: warning: narrowing conversion of 'dis' from 'long long int' to 'int' [-Wnarrowing]
watching.cpp:76:12: warning: narrowing conversion of 'dis' from 'long long int' to 'int' [-Wnarrowing]
   76 |    mp[{x,y,dis,ind,pos}].S=true;
      |            ^~~
watching.cpp:76:12: warning: narrowing conversion of 'dis' from 'long long int' to 'int' [-Wnarrowing]
watching.cpp:77:19: warning: narrowing conversion of 'dis' from 'long long int' to 'int' [-Wnarrowing]
   77 |    return mp[{x,y,dis,ind,pos}].F=check(x-1,y,dis,nind,1);
      |                   ^~~
watching.cpp:77:19: warning: narrowing conversion of 'dis' from 'long long int' to 'int' [-Wnarrowing]
watching.cpp:80:12: warning: narrowing conversion of 'dis' from 'long long int' to 'int' [-Wnarrowing]
   80 |    mp[{x,y,dis,ind,pos}].S=true;
      |            ^~~
watching.cpp:80:12: warning: narrowing conversion of 'dis' from 'long long int' to 'int' [-Wnarrowing]
watching.cpp:81:19: warning: narrowing conversion of 'dis' from 'long long int' to 'int' [-Wnarrowing]
   81 |    return mp[{x,y,dis,ind,pos}].F=check(x,y-1,dis,nind,2);
      |                   ^~~
watching.cpp:81:19: warning: narrowing conversion of 'dis' from 'long long int' to 'int' [-Wnarrowing]
watching.cpp:84:12: warning: narrowing conversion of 'dis' from 'long long int' to 'int' [-Wnarrowing]
   84 |    mp[{x,y,dis,ind,pos}].S=true;
      |            ^~~
watching.cpp:84:12: warning: narrowing conversion of 'dis' from 'long long int' to 'int' [-Wnarrowing]
watching.cpp:85:19: warning: narrowing conversion of 'dis' from 'long long int' to 'int' [-Wnarrowing]
   85 |    return mp[{x,y,dis,ind,pos}].S=0;
      |                   ^~~
watching.cpp:85:19: warning: narrowing conversion of 'dis' from 'long long int' to 'int' [-Wnarrowing]
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...