Submission #949583

#TimeUsernameProblemLanguageResultExecution timeMemory
949583GrindMachineSailing Race (CEOI12_race)C++17
40 / 100
100 ms5420 KiB
#include <bits/stdc++.h> #include <ext/pb_ds/assoc_container.hpp> #include <ext/pb_ds/tree_policy.hpp> using namespace std; using namespace __gnu_pbds; template<typename T> using Tree = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>; typedef long long int ll; typedef long double ld; typedef pair<int,int> pii; typedef pair<ll,ll> pll; #define fastio ios_base::sync_with_stdio(false); cin.tie(NULL) #define pb push_back #define endl '\n' #define sz(a) (int)a.size() #define setbits(x) __builtin_popcountll(x) #define ff first #define ss second #define conts continue #define ceil2(x,y) ((x+y-1)/(y)) #define all(a) a.begin(), a.end() #define rall(a) a.rbegin(), a.rend() #define yes cout << "Yes" << endl #define no cout << "No" << endl #define rep(i,n) for(int i = 0; i < n; ++i) #define rep1(i,n) for(int i = 1; i <= n; ++i) #define rev(i,s,e) for(int i = s; i >= e; --i) #define trav(i,a) for(auto &i : a) template<typename T> void amin(T &a, T b) { a = min(a,b); } template<typename T> void amax(T &a, T b) { a = max(a,b); } #ifdef LOCAL #include "debug.h" #else #define debug(x) 42 #endif /* */ const int MOD = 1e9 + 7; const int N = 500 + 5; const int inf1 = int(1e9) + 5; const ll inf2 = ll(1e18) + 5; vector<int> adj[N]; void solve(int test_case) { int n,k; cin >> n >> k; assert(!k); rep(u,n){ while(true){ int v; cin >> v; v--; if(v == -1) break; assert(u != v); adj[u].pb(v); } } vector<array<int,3>> order; rep(l,n){ rep(r,n){ int len = 0; if(l <= r){ len = r-l+1; } else{ len = n-l+r+1; } order.pb({len,l,r}); } } sort(all(order)); int dp[n][n][2]; memset(dp,0,sizeof dp); auto in_range = [&](int i, int l, int r){ if(l <= r){ return i >= l and i <= r; } else{ return i >= l or i <= r; } }; for(auto [len,l,r] : order){ if(l == r){ rep(j,2){ int u = 0; if(!j) u = l-1; else u = r+1; u = (u%n+n)%n; trav(v,adj[u]){ if(v == l){ dp[l][r][j] = 1; } } } } else{ rep(j,2){ int u = 0; if(!j) u = l-1; else u = r+1; u = (u%n+n)%n; trav(v,adj[u]){ if(!in_range(v,l,r)) conts; int val = 0; if(v != l){ amax(val,dp[l][(v-1+n)%n][1]); } if(v != r){ amax(val,dp[(v+1)%n][r][0]); } val++; amax(dp[l][r][j],val); } } } } pii ans = {0,0}; rep(u,n){ trav(v,adj[u]){ int val = 0; if((u+1)%n != v){ amax(val,dp[(u+1)%n][(v-1+n)%n][1]); } if((v+1)%n != u){ amax(val,dp[(v+1)%n][(u-1+n)%n][0]); } val++; if(u == 0 and v == 1){ debug(val); debug(dp[2][6][0]); } pii px = {val,u}; amax(ans,px); } } ans.ss++; cout << ans.ff << endl << ans.ss << endl; } int main() { fastio; int t = 1; // cin >> t; rep1(i, t) { solve(i); } return 0; }

Compilation message (stderr)

race.cpp: In function 'void solve(int)':
race.cpp:46:18: warning: statement has no effect [-Wunused-value]
   46 | #define debug(x) 42
      |                  ^~
race.cpp:160:17: note: in expansion of macro 'debug'
  160 |                 debug(val);
      |                 ^~~~~
race.cpp:46:18: warning: statement has no effect [-Wunused-value]
   46 | #define debug(x) 42
      |                  ^~
race.cpp:161:17: note: in expansion of macro 'debug'
  161 |                 debug(dp[2][6][0]);
      |                 ^~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...