結果
問題 | No.2779 Don't make Pair |
ユーザー | sibasyun |
提出日時 | 2024-07-16 22:38:45 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 4,471 bytes |
コンパイル時間 | 4,849 ms |
コンパイル使用メモリ | 275,392 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-16 22:38:53 |
合計ジャッジ時間 | 7,758 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
6,812 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 8 ms
6,940 KB |
testcase_10 | AC | 37 ms
6,940 KB |
testcase_11 | AC | 12 ms
6,944 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 77 ms
6,944 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 95 ms
6,940 KB |
testcase_22 | AC | 93 ms
6,944 KB |
testcase_23 | WA | - |
testcase_24 | AC | 94 ms
6,940 KB |
testcase_25 | AC | 93 ms
6,944 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 95 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> #include <algorithm> #include <iostream> #include <iomanip> #include <math.h> #include <random> #include <chrono> #include <cstdint> using namespace std; using namespace atcoder; // using mint = modint998244353; using mint = modint1000000007; using vi = vector<int>; using vvi = vector<vector<int>>; using vl = vector<long long>; using vvl = vector<vector<long long>>; using ll = long long; template <class T> using max_heap = priority_queue<T>; template <class T> using min_heap = priority_queue<T, vector<T>, greater<>>; #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define rep2(i, f, n) for (int i = (int) f; i < (int)(n); i++) #define repd(i, n, l) for (int i = (int) n; i >= (int) l; i--) #define all(p) p.begin(),p.end() vector<pair<int, int>> dydx{{-1, 0}, {1, 0}, {0, -1 }, {0, 1}}; const ll inf = 1LL << 60; void print(){ putchar(' '); } void print(bool a){ printf("%d", a); } void print(int a){ printf("%d", a); } void print(unsigned a){ printf("%u", a); } void print(long a){ printf("%ld", a); } void print(long long a){ printf("%lld", a); } void print(unsigned long long a){ printf("%llu", a); } void print(char a){ printf("%c", a); } void print(char a[]){ printf("%s", a); } void print(const char a[]){ printf("%s", a); } void print(float a){ printf("%.15f", a); } void print(double a){ printf("%.15f", a); } void print(long double a){ printf("%.15Lf", a); } void print(const string& a){ for(auto&& i : a) print(i); } template<class T> void print(const complex<T>& a){ if(a.real() >= 0) print('+'); print(a.real()); if(a.imag() >= 0) print('+'); print(a.imag()); print('i'); } template<class T> void print(const vector<T>&); template<class T, size_t size> void print(const array<T, size>&); template<class T, class L> void print(const pair<T, L>& p); template<class T, size_t size> void print(const T (&)[size]); template<class T> void print(const vector<T>& a){ if(a.empty()) return; print(a[0]); for(auto i = a.begin(); ++i != a.end(); ){ putchar(' '); print(*i); } } template<class T> void print(const deque<T>& a){ if(a.empty()) return; print(a[0]); for(auto i = a.begin(); ++i != a.end(); ){ putchar(' '); print(*i); } } template<class T, size_t size> void print(const array<T, size>& a){ print(a[0]); for(auto i = a.begin(); ++i != a.end(); ){ putchar(' '); print(*i); } } template<class T, class L> void print(const pair<T, L>& p){ print(p.first); putchar(' '); print(p.second); } template<class T, size_t size> void print(const T (&a)[size]){ print(a[0]); for(auto i = a; ++i != end(a); ){ putchar(' '); print(*i); } } template<class T> void print(const T& a){ cout << a; } vector<vector<int>> unweighted_graph(int n, int m){ vector<vector<int>> ret(n); while (m--){ int a, b; cin >> a >> b; a--; b--; ret[a].push_back(b); ret[b].push_back(a); } return ret; } vector<vector<pair<int, long long>>> weighted_graph(int n, int m){ vector<vector<pair<int, long long>>> ret(n); while (m--){ int a, b; long long c; cin >> a >> b >> c; a--, b--; ret[a].push_back({b, c}); ret[b].push_back({a, c}); } return ret; } template<typename T> int argmin(vector<T> &a){ T mi = *min_element(all(a)); for (int i = 0; i < a.size(); i++){ if (a[i] == mi) return i; } } template<typename T> int argmax(vector<T> &a){ T ma = *max_element(all(a)); for (int i = 0; i < a.size(); i++){ if (a[i] == ma) return i; } } template <typename T> vector<T> compress_coordinate(vector<T> &A){ int n = A.size(); vector<T> B(n); rep(i, n) B[i] = A[i]; sort(B.begin(), B.end()); B.erase(unique(B.begin(), B.end()), B.end()); return B; } int op(int a, int b) {return max(a, b);} int e(){return -10000;} int main() { int n; cin >> n; vi a(n); rep(i, n) cin >> a[i]; auto b = compress_coordinate(a); int m = b.size(); vi ans; vi cnt(m, 0); rep(i,n){ int idx = lower_bound(all(b), a[i]) - b.begin(); cnt[idx]++; } segtree<int, op, e> seg1(m); segtree<int, op, e> seg2(cnt); rep(i, n-1){ int idx = lower_bound(all(b), a[i]) - b.begin(); seg1.set(idx, seg1.get(idx)+1); seg2.set(idx, seg2.get(idx)-1); if (seg1.prod(0, m) == 1 && seg2.prod(0, m) == 1) ans.push_back(i+1); } cout << ans.size() << endl; print(ans);cout << endl; return 0; }