제출 #1048547

#제출 시각아이디문제언어결과실행 시간메모리
1048547pcc고대 책들 (IOI17_books)C++17
0 / 100
5 ms2396 KiB
#include "books.h" #include <bits/stdc++.h> using namespace std; #define ll long long const int mxn = 1e6+10; int N; int l[mxn],r[mxn]; long long minimum_walk(std::vector<int> p, int s) { ll ans = 0; N = p.size(); for(int i = 0;i<N;i++){ if(p[i] == i)continue; int a = i,b = p[i]; if(a<b){ l[a]++; l[b]--; } else{ r[b]++; r[a]--; } } for(int i = 1;i<N;i++){ l[i] += l[i-1]; r[i] += r[i-1]; } int rp = 0; for(int i = 0;i+1<N;i++){ if(max(l[i],r[i]) != 0)rp = i; } for(int i = 0;i+1<N;i++)cerr<<l[i]<<' ';cerr<<endl; for(int i = 0;i+1<N;i++)cerr<<r[i]<<' ';cerr<<endl; for(int i = 0;i+1<N;i++){ if(rp<i)break; ans += max({l[i],r[i],1})<<1; } return ans; }

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

books.cpp: In function 'long long int minimum_walk(std::vector<int>, int)':
books.cpp:33:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
   33 |  for(int i = 0;i+1<N;i++)cerr<<l[i]<<' ';cerr<<endl;
      |  ^~~
books.cpp:33:42: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
   33 |  for(int i = 0;i+1<N;i++)cerr<<l[i]<<' ';cerr<<endl;
      |                                          ^~~~
books.cpp:34:2: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
   34 |  for(int i = 0;i+1<N;i++)cerr<<r[i]<<' ';cerr<<endl;
      |  ^~~
books.cpp:34:42: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
   34 |  for(int i = 0;i+1<N;i++)cerr<<r[i]<<' ';cerr<<endl;
      |                                          ^~~~
#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...