Compile Error
foo.c:1:10: fatal error: bits/stdc++.h: No such file or directory 1 | #include <bits/stdc++.h> | ^~~~~~~~~~~~~~~ compilation terminated.
Code
#include <bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
cout.precision(10);
cout << fixed;
int t;
cin >> t;
while (t--) {
int n;
cin >> n;
bool isPermutation = true;
int a[n];
for (int i = 0; i < n; ++i) {
cin >> a[i];
}
vector<int> list;
for (int i = 0; i < n; ++i) {
if (a[i] > n) {
cout << "NO" << endl;
isPermutation = false;
}
__wrap_iter<int *> doesExistInList = find(list.begin(), list.end(), a[i]);
if (doesExistInList != list.end()) {
cout << "NO" << endl;
isPermutation = false;
} else {
list.push_back(a[i]);
}
}
if (isPermutation) {
cout << "YES" << endl;
}
}
return 0;
}
Information
- Submit By
- Type
- Submission
- Problem
- P1055 Array Permutation
- Contest
- Brain Booster #3
- Language
- C99 (GCC 13.2.0)
- Submit At
- 2024-05-06 15:13:39
- Judged At
- 2024-11-11 03:34:57
- Judged By
- Score
- 0
- Total Time
- 0ms
- Peak Memory
- 0 Bytes