#include using namespace std; #define repl(i, l, r) for (ll i = (l); i < (r); i++) #define rep(i, n) repl(i, 0, n) #define CST(x) cout << fixed << setprecision(x) using ll = long long; constexpr ll MOD = 1000000007; constexpr int inf = 1e9 + 10; constexpr ll INF = (ll)4e18 + 10; constexpr int dx[9] = {1, 0, -1, 0, 1, -1, -1, 1, 0}; constexpr int dy[9] = {0, 1, 0, -1, 1, 1, -1, -1, 0}; template inline bool chmax(T &a, T b) { return ((a < b) ? (a = b, true) : (false)); } template inline bool chmin(T &a, T b) { return ((a > b) ? (a = b, true) : (false)); } int main() { cin.tie(0); cout.tie(0); ios::sync_with_stdio(false); int n; cin >> n; pair a[n - 1]; rep(i, n - 1) { cin >> a[i].first; a[i].second = i; } sort(a, a + n - 1, greater>()); vector ans(n - 1); rep(i, n - 1) { if (i + a[i].first >= n) { cout << "NO" << endl; return 0; } ans[a[i].second] = i + 1; } rep(i, n - 1) cout << "YES" << endl; rep(i, n - 1) cout << ans[i] << endl; return 0; }