#include #include #include using namespace std; int n; int a[100010]; bool used[100010]; int p[100010],t[100010]; void init() { memset(used,false,sizeof(used)); cin >> n; for(int i=1;i<=n;i++) cin >> a[i]; } bool is(int k) { for(int i=1;i<=k;i++) p[a[i]]++; for(int j=1;j> t; while(t--) { init(); work(); print(); } return 0; }