微信红包

Posted NWU_ACM

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信红包相关的知识,希望对你有一定的参考价值。

用栈优化:

#include <stdio.h>
#define MAXN 1000005
double stack[MAXN], temp;
int n, top;
int main()
{
    while(scanf("%d", &n) != EOF)
    {
        top = 0;
        for(int i = 0; i < n; i++)
        {
            scanf("%lf", &temp);
            if(top == 0) stack[top++] = temp;
            else if(stack[top - 1] == temp) stack[top++] = temp;
            else top--;
        }
        printf("%.2lf\\n", top == 0 ? -1 : stack[top - 1]);
    }
    return 0;
}
View Code

 

用2个变量代替栈:

#include <stdio.h>
double ans, temp;
int n, size;
int main()
{
    while(scanf("%d", &n) != EOF)
    {
        size = 0;
        for(int i = 0; i < n; i++)
        {
            scanf("%lf", &temp);
            if(size == 0) ans = temp, size++;
            else if(ans == temp) size++;
            else size--;
        }
        printf("%.2lf\\n", ans);
    }
    return 0;
}
View Code

 

以上是关于微信红包的主要内容,如果未能解决你的问题,请参考以下文章

[编程题]微信红包

IVX低代码平台——小程序微信红包的应用的做法

微信红包算法

微信红包API接口(PHP)

[编程题] 微信红包

Android中微信抢红包助手的实现(代码整理)