ARTS打卡第十七周

Algorithm:Leetcode 950. Reveal Cards In Increasing Order

In a deck of cards, every card has a unique integer.  You can order the deck in any order you want.

Initially, all the cards start face down (unrevealed) in one deck.

Now, you do the following steps repeatedly, until all cards are revealed:

Take the top card of the deck, reveal it, and take it out of the deck.
If there are still cards in the deck, put the next top card of the deck at the bottom of the deck.
If there are still unrevealed cards, go back to step 1.  Otherwise, stop.
Return an ordering of the deck that would reveal the cards in increasing order.

The first entry in the answer is considered to be the top of the deck.

 

Example 1:

Input: [17,13,11,2,3,5,7]
Output: [2,13,3,11,5,17,7]
Explanation: 
We get the deck in the order [17,13,11,2,3,5,7] (this order doesn't matter), and reorder it.
After reordering, the deck starts as [2,13,3,11,5,17,7], where 2 is the top of the deck.
We reveal 2, and move 13 to the bottom.  The deck is now [3,11,5,17,7,13].
We reveal 3, and move 11 to the bottom.  The deck is now [5,17,7,13,11].
We reveal 5, and move 17 to the bottom.  The deck is now [7,13,11,17].
We reveal 7, and move 13 to the bottom.  The deck is now [11,17,13].
We reveal 11, and move 17 to the bottom.  The deck is now [13,17].
We reveal 13, and move 17 to the bottom.  The deck is now [17].
We reveal 17.
Since all the cards revealed are in increasing order, the answer is correct.
 

Note:

1 <= A.length <= 1000
1 <= A[i] <= 10^6
A[i] != A[j] for all i != j

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/reveal-cards-in-increasing-order
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

题目的意思是,给你一副牌,你任意排序,排好序后牌面朝下执行如下操作:

  1. 将最上面的牌翻过来,并从这一副牌里拿出来;
  2. 翻了一张牌后,将最上面的一张牌放到最底下;
  3. 重复上面两步,直到所有牌都翻过来了。
    要求按照牌被翻出来的顺序,牌面数字正好是递增的。

解法一:最容易想到的可能就是把翻牌的动作倒过来执行,即:
1 从最底下拿一张牌到最上面;
2 回收一张翻出来的牌,放在最上面;
3 重复上面两步,直到所有牌都回收完毕。
按照上面的步骤:

动作牌堆里的牌
将一张空牌放到最上面
回收1717
将17放到最上面17
回收1313,17
将17放到最上面17,13
回收1111,17,13
将13放到最上面13,11,17
回收77,13,11,17
将17放到最上面17,7,13,11
回收55,17,7,13,11
将11放到最上面11,5,17,7,13
回收33,11,5,17,7,13
将13放到最上面13,3,11,5,17,7
回收22,13,3,11,5,17,7

这就类似一个排序的过程。先初始化一个已排序列表,每次将已排序列表的最后一个数字移动到已排序列表最前面,然后找到未排序的数字中最大的,将其插入到已排序列表的最前面。相关代码如下:

class Solution {
    public int[] deckRevealedIncreasing(int[] deck) {
        if (deck.length < 2) {
            return deck;
        }

        for (int i=deck.length; i>1; i--) {
            int maxIndex = 0;
            for (int j=1; j<i; j++) {
                if (deck[j] > deck[maxIndex]) {
                    maxIndex = j;
                }
            }
            swap(deck, maxIndex, i-1);
            insertLastElementToIndex(deck, i-1);
        }
        return deck;
    }

    private void swap(int[] deck, int i, int j) {
        int temp = deck[i];
        deck[i] = deck[j];
        deck[j] = temp;
    }

    private void insertLastElementToIndex(int[] deck, int index) {
        if (index >= deck.length-1) {
            return;
        }
        int last = deck[deck.length-1];
        System.arraycopy(deck, index, deck, index + 1, deck.length - 1 - index);
        deck[index] = last;
    }
}

Tips: 将自己的电脑加入服务器信任列表实现免密登陆

cat ~/.ssh/id_rsa.pub | ssh -p 22   root@<serverIp>    "mkdir -p ~/.ssh && cat >>  ~/.ssh/authorized_keys"
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值