結果
問題 | No.2779 Don't make Pair |
ユーザー | HIcoder |
提出日時 | 2024-08-12 00:24:34 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,368 bytes |
コンパイル時間 | 1,373 ms |
コンパイル使用メモリ | 127,744 KB |
実行使用メモリ | 15,616 KB |
最終ジャッジ日時 | 2024-08-12 00:24:40 |
合計ジャッジ時間 | 5,350 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 40 ms
8,704 KB |
testcase_13 | AC | 43 ms
8,960 KB |
testcase_14 | AC | 31 ms
7,040 KB |
testcase_15 | AC | 72 ms
12,160 KB |
testcase_16 | WA | - |
testcase_17 | AC | 51 ms
10,112 KB |
testcase_18 | AC | 41 ms
8,192 KB |
testcase_19 | AC | 61 ms
10,752 KB |
testcase_20 | AC | 28 ms
7,040 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 107 ms
15,616 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 103 ms
14,976 KB |
testcase_27 | AC | 98 ms
14,976 KB |
testcase_28 | WA | - |
ソースコード
#include<iostream> #include<string> #include<queue> #include<vector> #include<cassert> #include<random> #include<set> #include<map> #include<cassert> #include<unordered_map> #include<bitset> #include<numeric> #include<algorithm> using namespace std; typedef long long ll; const int inf=1<<30; const ll INF=1LL<<62; typedef pair<int,ll> P; typedef pair<int,P> PP; const ll MOD=998244353; int main(){ int N; cin>>N; vector<int> A(N); map<int,vector<int>> idx; for(int i=0;i<N;i++){ cin>>A[i]; idx[A[i]].push_back(i); } vector<int> cnt_sum(N+1); int cnt=0; for(auto [k,v]:idx){ if(v.size()>=3){ cout<<0<<endl; return 0; } if(v.size()==1) continue; cnt++; int l=v[0],r=v[1];//[l,r) cnt_sum[l]++; cnt_sum[r]--; } if(cnt==0){ //どこに切れ目を入れても良い cout<<N-1<<endl; for(int i=1;i<=N-1;i++){ cout<<i<<(i==N-1?"\n":" "); } return 0; } for(int i=0;i<N;i++){ cnt_sum[i+1]+=cnt_sum[i]; } vector<int> ans; for(int i=0;i<N;i++){ if(cnt_sum[i]==cnt){ ans.push_back(i+1); } } cout<<ans.size()<<endl; for(int i=0;i<ans.size();i++){ cout<<ans[i]<<(i==ans.size()-1?"\n":" "); } }