Submission #971209

#TimeUsernameProblemLanguageResultExecution timeMemory
971209AbitoLine Town (CCO23_day1problem3)C++17
0 / 25
2 ms2392 KiB
#include <bits/stdc++.h> #include <ext/pb_ds/assoc_container.hpp> #define F first #define S second #define pb push_back #define ppb pop_back #define ep insert #define endl '\n' #define elif else if #define pow pwr #define sqrt sqrtt //#define int long long #define ll long long #define y1 YONE #define free freeee #define lcm llcm typedef unsigned long long ull; using namespace std; const int N=5e5+5; int a[N],n,b[N]; int32_t main(){ ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL); cin>>n; for (int i=1;i<=n;i++) cin>>a[i]; int op=0; for (int i=1;i<=n;i++){ for (int j=1;j<n;j++){ if (-a[j+1]<a[j]){ swap(a[j],a[j+1]); a[j]=-a[j]; a[j+1]=-a[j+1]; op++; } } for (int j=1;j<=n;j++) cout<<a[j]<<' ';cout<<endl; } if (is_sorted(a+1,a+1+n)) cout<<op<<endl; else cout<<-1<<endl; return 0; }

Compilation message (stderr)

Main.cpp: In function 'int32_t main()':
Main.cpp:35:9: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
   35 |         for (int j=1;j<=n;j++) cout<<a[j]<<' ';cout<<endl;
      |         ^~~
Main.cpp:35:48: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
   35 |         for (int j=1;j<=n;j++) cout<<a[j]<<' ';cout<<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...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...