Permutation Game CodeForces - 818B

Description

n children are standing in a circle and playing a game. Children's numbers in clockwise order form a permutation a1, a2, ..., an of length n. It is an integer sequence such that each integer from 1 to n appears exactly once in it.

The game consists of m steps. On each step the current leader with index i counts out ai people in clockwise order, starting from the next person. The last one to be pointed at by the leader becomes the new leader.

You are given numbers l1, l2, ..., lm — indices of leaders in the beginning of each step. Child with number l1 is the first leader in the game.

Write a program which will restore a possible permutation a1, a2, ..., an. If there are multiple solutions then print any of them. If there is no solution then print -1.

Input

The first line contains two integer numbers n, m (1 ≤ n, m ≤ 100).

The second line contains m integer numbers l1, l2, ..., lm (1 ≤ li ≤ n) — indices of leaders in the beginning of each step.

Output

Print such permutation of n numbers a1, a2, ..., an that leaders in the game will be exactly l1, l2, ..., lm if all the rules are followed. If there are multiple solutions print any of them.

If there is no permutation which satisfies all described conditions print -1.

题意:N个人,每轮leader报数,提供每一轮的leader,报的数字是这一轮的leader-上一轮的leader,每个数字只能被一个人报,每个人只能报一个数字

#include <iostream>
using namespace std;
const int MAXN = 105;
int used[MAXN];
int l[MAXN];
int a[MAXN];

int main() {
    int n, m;
    cin >> n >> m;
    for(int i = 0; i < m; i++) {
        cin >> l[i];
    }
    for(int i = 1; i < m; i++) {
        int tmp = l[i] - l[i - 1];
        if(tmp <= 0) tmp = n + tmp;
        //cout << tmp << endl;
        if((l[i-1] != used[tmp] && used[tmp] != 0 )|| (a[l[i-1]] != tmp && a[l[i-1]] != 0)) {
            cout << "-1" << endl;
            return 0;
        }
        a[l[i - 1]] = tmp;
        used[tmp] = l[i - 1];
    }

    for(int i = 1; i <= n; i++){
           // cout << a[i] << endl;
        if(a[i] == 0){
            for(int j = 1; j < MAXN; j++)
                if(!used[j]) {
                    a[i] = j;
                    used[j] = i;
                    break;
                }
        }
    }
    for (int i = 1; i < n; i++){
        cout << a[i] << " ";
    }
    cout << a[n] << endl;

    return 0;
}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值