結果
問題 | No.2779 Don't make Pair |
ユーザー | GoldIngot |
提出日時 | 2024-06-07 22:15:33 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 86 ms / 2,000 ms |
コード長 | 1,350 bytes |
コンパイル時間 | 4,079 ms |
コンパイル使用メモリ | 267,296 KB |
実行使用メモリ | 9,288 KB |
最終ジャッジ日時 | 2024-06-07 22:15:39 |
合計ジャッジ時間 | 5,843 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 3 ms
5,376 KB |
testcase_10 | AC | 9 ms
5,376 KB |
testcase_11 | AC | 4 ms
5,376 KB |
testcase_12 | AC | 22 ms
5,376 KB |
testcase_13 | AC | 24 ms
5,632 KB |
testcase_14 | AC | 26 ms
5,376 KB |
testcase_15 | AC | 38 ms
6,272 KB |
testcase_16 | AC | 36 ms
6,144 KB |
testcase_17 | AC | 42 ms
6,656 KB |
testcase_18 | AC | 36 ms
6,144 KB |
testcase_19 | AC | 56 ms
6,400 KB |
testcase_20 | AC | 17 ms
5,376 KB |
testcase_21 | AC | 42 ms
6,528 KB |
testcase_22 | AC | 24 ms
5,504 KB |
testcase_23 | AC | 86 ms
9,288 KB |
testcase_24 | AC | 33 ms
5,760 KB |
testcase_25 | AC | 34 ms
5,760 KB |
testcase_26 | AC | 50 ms
7,424 KB |
testcase_27 | AC | 51 ms
7,424 KB |
testcase_28 | AC | 44 ms
7,424 KB |
コンパイルメッセージ
In function 'bool chmax(T&, const T&) [with T = long long int]', inlined from 'int main()' at main.cpp:43:10: main.cpp:21:49: warning: 'L' may be used uninitialized [-Wmaybe-uninitialized] 21 | template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; } | ^~ main.cpp: In function 'int main()': main.cpp:30:8: note: 'L' was declared here 30 | ll L, R; | ^ main.cpp:30:11: warning: 'R' may be used uninitialized [-Wmaybe-uninitialized] 30 | ll L, R; | ^
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> #define rep(i,n) for(int (i)=0;(i)<(n);(i)++) #define rep2(i,m,n) for(int (i)=(m);(i)<(n);(i)++) #define rep2ll(i,m,n) for(ll (i)=(m);(i)<(n);(i)++) #define ALL(obj) (obj).begin(), (obj).end() #define rALL(obj) (obj).rbegin(), (obj).rend() using namespace std; using ll = long long; using P = pair<ll,ll>; using mint = atcoder::modint998244353; using VL = vector<ll>; using VVL = vector<VL>; using VVVL = vector<VVL>; using VM = vector<mint>; using VVM = vector<VM>; using VVVM = vector<VVM>; using VD = vector<double>; using VVD = vector<VD>; using VVVD = vector<VVD>; template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return 1; } return 0; } template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return 1; } return 0; } int main(){ ios::sync_with_stdio(false); cin.tie(0); ll n; cin>>n; VL a(n); rep(i,n) cin>>a[i]; ll L, R; set<ll> s; rep(i,n){ if(s.count(a[i])) break; s.insert(a[i]); R = i + 1; } s.clear(); for(int i=n-1; i>=0; i--){ if(s.count(a[i])) break; s.insert(a[i]); L = i - 1; } chmax(L, 0LL); chmin(R, n-1); VL ans; rep2(i,L,R) ans.push_back(i); cout<<ans.size()<<'\n'; for(auto x:ans) cout<<x+1<<' '; cout<<'\n'; return 0; }