제출 #292039

#제출 시각아이디문제언어결과실행 시간메모리
292039mat_v정렬하기 (IOI15_sorting)C++14
74 / 100
53 ms18168 KiB
#include <bits/stdc++.h> #include <ext/pb_ds/assoc_container.hpp> #include <ext/pb_ds/tree_policy.hpp> #include <ext/rope> #define ff(i,a,b) for(int (i) = (a); (i) <= (b); ++(i)) #define fb(i,a,b) for(int (i) = (a); (i) >= (b); --(i)) #define mod 1000000007 #define xx first #define yy second #define all(a) (a).begin(), (a).end() #define pb push_back #define ll long long #define pii pair<int,int> #define maxn 200005 using namespace std; using namespace __gnu_pbds; typedef tree<int, null_type, less<int>,rb_tree_tag, tree_order_statistics_node_update> ordered_set;/// find_by_order(x)(x+1th) , order_of_key() (strictly less) mt19937 rnd(chrono::steady_clock::now().time_since_epoch().count()); int n; int m; int a[maxn]; int x[maxn]; int y[maxn]; int p[maxn]; int q[maxn]; int tmp[maxn]; int poz[maxn]; bool check(int t){ vector<pii> sols; ff(i,0,n - 1)tmp[i] = a[i]; ff(i,0,t - 1){ swap(tmp[x[i]], tmp[y[i]]); } ff(i,0,n - 1)poz[tmp[i]] = i; ff(i,0,n - 1){ if(poz[i] == i)continue; sols.pb({tmp[i], i}); int fr1 = tmp[i]; int fr2 = i; int t1 = poz[fr1]; int t2 = poz[fr2]; poz[fr2] = t1; poz[fr1] = t2; swap(tmp[t1], tmp[t2]); } ff(i,0,n - 1)assert(tmp[i] == i); int kol = sols.size(); //for(auto c:sols)cout << c.xx << " " << c.yy << "\n"; if(kol > t)return 0; ff(i,kol,t)sols.pb({0,0}); //cout << "ok\n"; ff(i,0,n - 1)tmp[i] = a[i]; ff(i,0,n - 1)poz[tmp[i]] = i; ff(i,0,t - 1){ /// prvi int fr1 = tmp[x[i]]; int fr2 = tmp[y[i]]; int t1 = poz[fr1]; int t2 = poz[fr2]; poz[fr2] = t1; poz[fr1] = t2; swap(tmp[t1], tmp[t2]); fr1 = sols[i].xx; fr2 = sols[i].yy; //cout << i << " " << sols[i].xx << " " << sols[i].yy << "\n"; t1 = poz[fr1]; t2 = poz[fr2]; p[i] = t1; q[i] = t2; poz[fr2] = t1; poz[fr1] = t2; swap(tmp[t1], tmp[t2]); } //ff(i,0,n - 2)assert(tmp[i] < tmp[i + 1]); return 1; } int findSwapPairs(int N, int S[], int M, int X[], int Y[], int P[], int Q[]) { n = N; m = M; ff(i,0,m - 1){ p[i] = q[i] = 0; } ff(i,0,n - 1){ a[i] = S[i]; } ff(i,0,m - 1){ x[i] = X[i]; y[i] = Y[i]; } bool da = 1; ff(i,0,n - 2){ if(a[i] >= a[i + 1])da = 0; } if(da)return 0; int l = 1; int r = m; // return check(3); //return 1; while(l < r){ int mid = (l + r) / 2; if(check(mid)){ r = mid; } else l = mid + 1; } check(l); ff(i,0,m - 1){ P[i] = p[i]; Q[i] = q[i]; } ff(i,0,l - 1){ swap(S[X[i]], S[Y[i]]); swap(S[P[i]], S[Q[i]]); } //ff(i,0,n - 2)assert(S[i] < S[i + 1]); //assert(l <= m); return l; }

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

sorting.cpp: In function 'bool check(int)':
sorting.cpp:6:27: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
    6 | #define ff(i,a,b) for(int (i) = (a); (i) <= (b); ++(i))
      |                           ^
sorting.cpp:36:5: note: in expansion of macro 'ff'
   36 |     ff(i,0,n - 1)tmp[i] = a[i];
      |     ^~
sorting.cpp:6:27: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
    6 | #define ff(i,a,b) for(int (i) = (a); (i) <= (b); ++(i))
      |                           ^
sorting.cpp:37:5: note: in expansion of macro 'ff'
   37 |     ff(i,0,t - 1){
      |     ^~
sorting.cpp:6:27: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
    6 | #define ff(i,a,b) for(int (i) = (a); (i) <= (b); ++(i))
      |                           ^
sorting.cpp:40:5: note: in expansion of macro 'ff'
   40 |     ff(i,0,n - 1)poz[tmp[i]] = i;
      |     ^~
sorting.cpp:6:27: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
    6 | #define ff(i,a,b) for(int (i) = (a); (i) <= (b); ++(i))
      |                           ^
sorting.cpp:41:5: note: in expansion of macro 'ff'
   41 |     ff(i,0,n - 1){
      |     ^~
sorting.cpp:6:27: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
    6 | #define ff(i,a,b) for(int (i) = (a); (i) <= (b); ++(i))
      |                           ^
sorting.cpp:52:5: note: in expansion of macro 'ff'
   52 |     ff(i,0,n - 1)assert(tmp[i] == i);
      |     ^~
sorting.cpp:53:24: warning: conversion from 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} to 'int' may change value [-Wconversion]
   53 |     int kol = sols.size();
      |               ~~~~~~~~~^~
sorting.cpp:6:27: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
    6 | #define ff(i,a,b) for(int (i) = (a); (i) <= (b); ++(i))
      |                           ^
sorting.cpp:56:5: note: in expansion of macro 'ff'
   56 |     ff(i,kol,t)sols.pb({0,0});
      |     ^~
sorting.cpp:6:27: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
    6 | #define ff(i,a,b) for(int (i) = (a); (i) <= (b); ++(i))
      |                           ^
sorting.cpp:58:5: note: in expansion of macro 'ff'
   58 |     ff(i,0,n - 1)tmp[i] = a[i];
      |     ^~
sorting.cpp:6:27: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
    6 | #define ff(i,a,b) for(int (i) = (a); (i) <= (b); ++(i))
      |                           ^
sorting.cpp:59:5: note: in expansion of macro 'ff'
   59 |     ff(i,0,n - 1)poz[tmp[i]] = i;
      |     ^~
sorting.cpp:6:27: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
    6 | #define ff(i,a,b) for(int (i) = (a); (i) <= (b); ++(i))
      |                           ^
sorting.cpp:60:5: note: in expansion of macro 'ff'
   60 |     ff(i,0,t - 1){
      |     ^~
sorting.cpp: In function 'int findSwapPairs(int, int*, int, int*, int*, int*, int*)':
sorting.cpp:6:27: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
    6 | #define ff(i,a,b) for(int (i) = (a); (i) <= (b); ++(i))
      |                           ^
sorting.cpp:88:5: note: in expansion of macro 'ff'
   88 |     ff(i,0,m - 1){
      |     ^~
sorting.cpp:6:27: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
    6 | #define ff(i,a,b) for(int (i) = (a); (i) <= (b); ++(i))
      |                           ^
sorting.cpp:91:5: note: in expansion of macro 'ff'
   91 |     ff(i,0,n - 1){
      |     ^~
sorting.cpp:6:27: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
    6 | #define ff(i,a,b) for(int (i) = (a); (i) <= (b); ++(i))
      |                           ^
sorting.cpp:94:5: note: in expansion of macro 'ff'
   94 |     ff(i,0,m - 1){
      |     ^~
sorting.cpp:6:27: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
    6 | #define ff(i,a,b) for(int (i) = (a); (i) <= (b); ++(i))
      |                           ^
sorting.cpp:99:5: note: in expansion of macro 'ff'
   99 |     ff(i,0,n - 2){
      |     ^~
sorting.cpp:6:27: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
    6 | #define ff(i,a,b) for(int (i) = (a); (i) <= (b); ++(i))
      |                           ^
sorting.cpp:115:5: note: in expansion of macro 'ff'
  115 |     ff(i,0,m - 1){
      |     ^~
sorting.cpp:6:27: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
    6 | #define ff(i,a,b) for(int (i) = (a); (i) <= (b); ++(i))
      |                           ^
sorting.cpp:119:5: note: in expansion of macro 'ff'
  119 |     ff(i,0,l - 1){
      |     ^~
#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...