제출 #1105994

#제출 시각아이디문제언어결과실행 시간메모리
1105994InvMODUntitled (POI11_rot)C++14
100 / 100
204 ms48624 KiB
#include<bits/stdc++.h> // #define int long long using namespace std; using ll = long long; // The memory limit is strict, and max cnt_node is only (n<<2) like segment tree stupid nub InvMOD 28/10/2024 >:( const int N = 8e5+5, label = 2e5+5; int n, cnt_node, timerDFS, val[N]; int tin[N], tout[N], tour[N], bit[label]; vector<int> adj[N]; void dfs_Size(int x, int p){ tour[tin[x] = ++timerDFS] = x; for(int v : adj[x])if(v != p) dfs_Size(v, x); tout[x] = timerDFS; return; } void update(int p, int val){ if(!p) return; for(; p <= n; p += p&-p) bit[p] += val; return; } int get(int p){ int res = 0; if(!p || p < 0) return 0; for(; p; p -= p&-p) res += bit[p]; return res; } int get_range(int l, int r){ return get(r) - get(l-1); } void sack_add(int x){ if(val[x]) update(val[x], 1); } void sack_rem(int x){ if(val[x]) update(val[x], -1); } ll sack(int x, int p, bool keep){ int Mx = 0, hev = 0; for(int v : adj[x])if(v != p){ int szv = tout[v] - tin[v]+1; if(szv > Mx) hev = v, Mx = szv; } ll answer = 0; for(int v : adj[x])if(v != p && v != hev) answer = answer + sack(v, x, 0); if(hev) answer = answer + sack(hev, x, 1); sack_add(x); ll left = (val[x] ? get_range(val[x]+1, n) : 0); ll right = (val[x] ? get_range(1, val[x]-1) : 0); for(int v : adj[x])if(v != p && v != hev){ for(int i = tin[v]; i <= tout[v]; i++){ int cur_node = tour[i]; left = left + 1ll * (val[cur_node] ? get_range(val[cur_node]+1, n) : 0); right = right + 1ll * (val[cur_node] ? get_range(1, val[cur_node]-1) : 0); } for(int i = tin[v]; i <= tout[v]; i++){ sack_add(tour[i]); } } if(!keep){ for(int i = tin[x]; i <= tout[x]; i++) sack_rem(tour[i]); } return answer + min(left, right); } void input(int cur_node) { int x; cin >> x; if(!x){ // Start 2 new subtree for(int i = 0; i < 2; i++){ adj[cur_node].push_back(++cnt_node); input(cnt_node); } } else{ // Leaf info val[cur_node] = x; } return; } void solve() { cin >> n; cnt_node = 1; input(cnt_node); dfs_Size(1, -1); cout << sack(1, -1, 0) <<"\n"; } int32_t main(){ ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); #define name "InvMOD" if(fopen(name".INP", "r")){ freopen(name".INP", "r", stdin); freopen(name".OUT", "w", stdout); } solve(); return 0; }

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

rot.cpp: In function 'int32_t main()':
rot.cpp:123:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
  123 |         freopen(name".INP", "r", stdin);
      |         ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
rot.cpp:124:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
  124 |         freopen(name".OUT", "w", stdout);
      |         ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
#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...
#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...
#Verdict Execution timeMemoryGrader output
Fetching results...