이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define ZAZO ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
#define int long long
using namespace std;
vector<int>edges[50001];
int vis[50001]={0};
int mx=1,n,k;
int32_t main() {
ZAZO
cin >> n >> k ;
for(int i = 0 ; i < n ; i ++)
{
int d;
cin>>d;
for(int j = 0 ; j < d ; j ++)
{
mx=2;
int x; cin>>x;
edges[i].push_back(x);
edges[x].push_back(i);
}
}
for(int i = 0 ; i < n ; i ++)
{
for(int j = 0 ; j < edges[i].size() ; j ++)
{
for(int p = j+1 ; p < edges[i].size(); p++)
{
int flg=0;
int p1 = edges[i][j] , p2 = edges[i][p];
auto it = find(edges[p1].begin(),edges[p1].end(),p2);
if(it!=edges[p1].end())
{
mx=max(mx,3ll);
flg=1;
}
if(!flg||mx>=k) continue;
for(int k = j+2 ; k < edges[i].size(); k++)
{
int flg1=0,p3 = edges[i][k] , p4 = edges[i][p];
auto it2 = find(edges[p3].begin(),edges[p3].end(),p4);
auto it22 = find(edges[p3].begin(),edges[p3].end(),p1);
if(it2!=edges[p3].end()&&it22!=edges[p3].end())
{
mx=max(mx,4ll);
flg1=1;
}
if(!flg1||mx>=k) continue;
for(int kk = j+3 ; kk<edges[i].size() ; kk++)
{
int flg2=0,p5 = edges[i][kk] , p6 = edges[i][k];
auto it3 = find(edges[p5].begin(),edges[p5].end(),p6);
auto it33 = find(edges[p5].begin(),edges[p5].end(),p4);
auto it333 = find(edges[p5].begin(),edges[p5].end(),p1);
if(it3!=edges[p5].end()&&it33!=edges[p5].end()&&it333!=edges[p5].end())
{
mx=max(mx,5ll);
cout<<"5"<<endl;
return 0;
}
}
}
}
}
}
cout<<mx<<endl;
}
컴파일 시 표준 에러 (stderr) 메시지
politicaldevelopment.cpp: In function 'int32_t main()':
politicaldevelopment.cpp:25:23: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
25 | for(int j = 0 ; j < edges[i].size() ; j ++)
| ~~^~~~~~~~~~~~~~~~~
politicaldevelopment.cpp:27:27: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
27 | for(int p = j+1 ; p < edges[i].size(); p++)
| ~~^~~~~~~~~~~~~~~~~
politicaldevelopment.cpp:38:29: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
38 | for(int k = j+2 ; k < edges[i].size(); k++)
| ~~^~~~~~~~~~~~~~~~~
politicaldevelopment.cpp:49:32: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
49 | for(int kk = j+3 ; kk<edges[i].size() ; kk++)
| ~~^~~~~~~~~~~~~~~~
politicaldevelopment.cpp:51:17: warning: unused variable 'flg2' [-Wunused-variable]
51 | int flg2=0,p5 = edges[i][kk] , p6 = edges[i][k];
| ^~~~
# | 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... |