제출 #291629

#제출 시각아이디문제언어결과실행 시간메모리
291629mat_v정렬하기 (IOI15_sorting)C++14
20 / 100
3 ms1024 KiB
#include "sorting.h" #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], tmp[poz[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)cout << tmp[i] << " "; int kol = sols.size(); //for(auto c:sols)cout << c.xx << " " << c.yy << "\n"; if(kol > t)return 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,kol - 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]); } 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:7:27: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
    7 | #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,n - 1)tmp[i] = a[i];
      |     ^~
sorting.cpp:7:27: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
    7 | #define ff(i,a,b) for(int (i) = (a); (i) <= (b); ++(i))
      |                           ^
sorting.cpp:38:5: note: in expansion of macro 'ff'
   38 |     ff(i,0,t - 1){
      |     ^~
sorting.cpp:7:27: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
    7 | #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)poz[tmp[i]] = i;
      |     ^~
sorting.cpp:7:27: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
    7 | #define ff(i,a,b) for(int (i) = (a); (i) <= (b); ++(i))
      |                           ^
sorting.cpp:42:5: note: in expansion of macro 'ff'
   42 |     ff(i,0,n - 1){
      |     ^~
sorting.cpp:54:24: warning: conversion from 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} to 'int' may change value [-Wconversion]
   54 |     int kol = sols.size();
      |               ~~~~~~~~~^~
sorting.cpp:7:27: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
    7 | #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:7:27: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
    7 | #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:7:27: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
    7 | #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,kol - 1){
      |     ^~
sorting.cpp: In function 'int findSwapPairs(int, int*, int, int*, int*, int*, int*)':
sorting.cpp:7:27: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
    7 | #define ff(i,a,b) for(int (i) = (a); (i) <= (b); ++(i))
      |                           ^
sorting.cpp:87:5: note: in expansion of macro 'ff'
   87 |     ff(i,0,m - 1){
      |     ^~
sorting.cpp:7:27: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
    7 | #define ff(i,a,b) for(int (i) = (a); (i) <= (b); ++(i))
      |                           ^
sorting.cpp:90:5: note: in expansion of macro 'ff'
   90 |     ff(i,0,n - 1){
      |     ^~
sorting.cpp:7:27: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
    7 | #define ff(i,a,b) for(int (i) = (a); (i) <= (b); ++(i))
      |                           ^
sorting.cpp:93:5: note: in expansion of macro 'ff'
   93 |     ff(i,0,m - 1){
      |     ^~
sorting.cpp:7:27: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
    7 | #define ff(i,a,b) for(int (i) = (a); (i) <= (b); ++(i))
      |                           ^
sorting.cpp:98:5: note: in expansion of macro 'ff'
   98 |     ff(i,0,n - 2){
      |     ^~
sorting.cpp:7:27: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
    7 | #define ff(i,a,b) for(int (i) = (a); (i) <= (b); ++(i))
      |                           ^
sorting.cpp:114:5: note: in expansion of macro 'ff'
  114 |     ff(i,0,m - 1){
      |     ^~
sorting.cpp:7:27: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
    7 | #define ff(i,a,b) for(int (i) = (a); (i) <= (b); ++(i))
      |                           ^
sorting.cpp:118:5: note: in expansion of macro 'ff'
  118 |     ff(i,0,l - 1){
      |     ^~
sorting.cpp:7:27: warning: unnecessary parentheses in declaration of 'i' [-Wparentheses]
    7 | #define ff(i,a,b) for(int (i) = (a); (i) <= (b); ++(i))
      |                           ^
sorting.cpp:122:5: note: in expansion of macro 'ff'
  122 |     ff(i,0,n - 2)assert(S[i] < S[i + 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...