이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef pair<int,int> pii;
const int INF=1e9;
int lim=500;
int n;
struct point
{
int x,y,z;
} v[150005];
bool byx(point a,point b)
{
return a.x<b.x;
}
bool byy(pii a,pii b)
{
if(a.first!=b.first)
return a.first>b.first;
return a.second<b.second;
}
bool byz(pii a,pii b)
{
if(a.second!=b.second)
return a.second>b.second;
return a.first<b.first;
}
vector<pii> myy,myz;
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(0);
myy.push_back({-INF,INF});
myz.push_back({INF,-INF});
int maxim=0;
cin>>n;
for(int i=1;i<=n;i++)
{
cin>>v[i].x>>v[i].y>>v[i].z;
maxim=max(maxim,v[i].x);
maxim=max(maxim,v[i].y);
maxim=max(maxim,v[i].z);
}
if(maxim<=300)
lim=300;
if(maxim<=20)
lim=50;
int ans=-1;
sort(v+1,v+n+1,byx);
for(int i=1;i<=n;i++)
{
vector<point> a;
int j=i;
while(j<=n&&v[j].x==v[i].x)
{
a.push_back(v[j]);
j++;
}
for(point p:a)
{
for(pii ymax:myy)
{
if(ymax.first<=p.y)
continue;
int z=-1;
for(pii a:myz)
if(a.first<ymax.first&&a.second>ymax.second)
{
z=max(z,a.second);
break;
}
if(z>p.z)
{
ans=max(ans,ymax.first+z+p.x);
break;
}
}
/*for(pii zmax:myz)
{
if(zmax.second<=p.z)
continue;
int y=-1;
for(pii a:myy)
if(a.second<zmax.second&&a.first>zmax.first)
{
y=max(y,a.first);
break;
}
if(y>p.y)
{
ans=max(ans,zmax.second+y+p.x);
break;
}
}*/
}
for(point p:a)
{
myy.push_back({p.y,p.z});
sort(myy.begin(),myy.end(),byy);
myy.erase(unique(myy.begin(),myy.end()),myy.end());
if(myy.size()>lim)
myy.pop_back();
myz.push_back({p.y,p.z});
sort(myz.begin(),myz.end(),byz);
myz.erase(unique(myz.begin(),myz.end()),myz.end());
if(myz.size()>lim)
myz.pop_back();
}
i=j-1;
}
cout<<ans;
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
team.cpp: In function 'int main()':
team.cpp:102:26: warning: comparison of integer expressions of different signedness: 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
102 | if(myy.size()>lim)
| ~~~~~~~~~~^~~~
team.cpp:107:26: warning: comparison of integer expressions of different signedness: 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
107 | if(myz.size()>lim)
| ~~~~~~~~~~^~~~
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |