Submission #472579

#TimeUsernameProblemLanguageResultExecution timeMemory
472579ZaZo_Political Development (BOI17_politicaldevelopment)C++14
16 / 100
3073 ms47492 KiB
#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}; map<pair<int,int>,int>ed; 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); ed[{i,x}]=1; ed[{x,i}]=1; } } 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]; if(ed.count({p1,p2})) { mx=max(mx,3ll); flg=1; } if(!flg||mx>=k) continue; for(int o = p+1 ; o < edges[i].size(); o++) { int flg1=0,p3 = edges[i][o]; if(ed.count({p3,p2})&&ed.count({p3,p1})) { mx=max(mx,4ll); flg1=1; } if(!flg1||mx>=k) continue; for(int kk = o+1 ; kk<edges[i].size() ; kk++) { int flg2=0,p4 = edges[i][kk]; if(ed.count({p4,p3})&&ed.count({p4,p2})&&ed.count({p4,p1})) { cout<<"5"<<endl; return 0; } } } } } } cout<<mx<<endl; }

Compilation message (stderr)

politicaldevelopment.cpp: In function 'int32_t main()':
politicaldevelopment.cpp:28: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]
   28 |     for(int j = 0 ; j < edges[i].size() ; j ++)
      |                     ~~^~~~~~~~~~~~~~~~~
politicaldevelopment.cpp:30: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]
   30 |       for(int p = j+1 ; p < edges[i].size(); p++)
      |                         ~~^~~~~~~~~~~~~~~~~
politicaldevelopment.cpp:40: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]
   40 |         for(int o = p+1 ; o < edges[i].size(); o++)
      |                           ~~^~~~~~~~~~~~~~~~~
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 = o+1 ; kk<edges[i].size() ; kk++)
      |                              ~~^~~~~~~~~~~~~~~~
politicaldevelopment.cpp:51:17: warning: unused variable 'flg2' [-Wunused-variable]
   51 |             int flg2=0,p4 = edges[i][kk];
      |                 ^~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...