제출 #899972

#제출 시각아이디문제언어결과실행 시간메모리
899972I_am_Polish_GirlAbracadabra (CEOI22_abracadabra)C++14
0 / 100
212 ms40372 KiB
/* * powered by ANDRIY POPYK * in honor of SEGMENT DECOMPOSITION and N ^ (log(N)) and hate_club_Dasha_Lobas * I hate GeZhiyuan * fuck you */ #pragma GCC optimize("O3") #pragma GCC target("avx,avx2,fma") #pragma GCC optimization("unroll-loops") #pragma GCC target("avx,avx2,sse,sse2,sse3,sse4,popcnt") #include <algorithm> #include <bitset> #include <cmath> #include <cstdio> #include <ctime> #include <iomanip> #include <iostream> #include <map> #include <queue> #include <random> #include <set> #include <stack> #include <vector> using namespace std; typedef long long ll; #define int long long int mod = 1000000007; int inf = 1000000000000000000; signed main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr); int times_ = 1; //cin >> times_; while (times_--) { int n , k; cin >> n >> k; vector <int> a(n); for (int i = 0; i < n; i++) cin >> a[i]; vector <vector <pair <int, int>>> q(n+1); int col = 50; vector <int> ans(k , -1); for (int i = 0; i < k; i++) { int t, ind; cin >> t >> ind; q[min(t , col)].push_back({ ind , i }); } for (int i = 0; i <= col; i++) { vector <int> b; int ind1 = 0; int ind2 = n / 2; for (int j = 0; j < n; j++) { if (ind1 == n / 2) { b.push_back(a[ind2]); ind2++; continue; } if (ind2 == n) { b.push_back(a[ind1]); ind1++; continue; } if (a[ind1] < a[ind2]) { b.push_back(a[ind1]); ind1++; continue; } else { b.push_back(a[ind2]); ind2++; continue; } } for (int j = 0; j < q[i].size(); j++) { ans[q[i][j].second] = a[q[i][j].first - 1]; } a = b; /* for (int i = 0; i < n; i++) cout << a[i] << " "; cout << "\n**\n"; */ } for (int i = 0; i < k; i++) cout << ans[i] << "\n"; } }

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

Main.cpp:11: warning: ignoring '#pragma GCC optimization' [-Wunknown-pragmas]
   11 | #pragma GCC optimization("unroll-loops")
      | 
Main.cpp: In function 'int main()':
Main.cpp:109:31: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<std::pair<long long int, long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
  109 |             for (int j = 0; j < q[i].size(); j++)
      |                             ~~^~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...