Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <bits/stdc++.h>
- using namespace std;
- #define int long long
- signed main()
- {
- int n;
- cin >> n;
- vector<int> a(n);
- for(int i = 0; i < n; i++){
- cin >> a[i];
- }
- sort(a.begin(), a.end());
- bool ok = true;
- for(int i = 0; i < n; i++){
- if(a[i] != (i + 1)){
- ok = false;
- break;
- }
- }
- cout << (ok ? "Yes" : "No") << endl;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement