Passing the Message

 What a sunny day! Let’s go picnic and have barbecue! Today, all kids in “Sun Flower” kindergarten are prepared to have an excursion. Before kicking off, teacher Liu tells them to stand in a row. Teacher Liu has an important message to announce, but she doesn’t want to tell them directly. She just wants the message to spread among the kids by one telling another. As you know, kids may not retell the message exactly the same as what they was told, so teacher Liu wants to see how many versions of message will come out at last. With the result, she can evaluate the communication skills of those kids.
Because all kids have different height, Teacher Liu set some message passing rules as below:

1.She tells the message to the tallest kid.

2.Every kid who gets the message must retell the message to his “left messenger” and “right messenger”.

3.A kid’s “left messenger” is the kid’s tallest “left follower”.

4.A kid’s “left follower” is another kid who is on his left, shorter than him, and can be seen by him. Of course, a kid may have more than one “left follower”.

5.When a kid looks left, he can only see as far as the nearest kid who is taller than him.

The definition of “right messenger” is similar to the definition of “left messenger” except all words “left” should be replaced by words “right”.

For example, suppose the height of all kids in the row is 4, 1, 6, 3, 5, 2 (in left to right order). In this situation , teacher Liu tells the message to the 3rd kid, then the 3rd kid passes the message to the 1st kid who is his “left messenger” and the 5th kid who is his “right messenger”, and then the 1st kid tells the 2nd kid as well as the 5th kid tells the 4th kid and the 6th kid.
Your task is just to figure out the message passing route. 

Input
The first line contains an integer T indicating the number of test cases, and then T test cases follows.
Each test case consists of two lines. The first line is an integer N (0< N <= 50000) which represents the number of kids. The second line lists the height of all kids, in left to right order. It is guaranteed that every kid’s height is unique and less than 2^31 – 1 .
Output
For each test case, print “Case t:” at first ( t is the case No. starting from 1 ). Then print N lines. The ith line contains two integers which indicate the position of the ith (i starts form 1 ) kid’s “left messenger” and “right messenger”. If a kid has no “left messenger” or “right messenger”, print ‘0’ instead. (The position of the leftmost kid is 1, and the position of the rightmost kid is N)

#include<stdio.h>
#include<stack>
using namespace std;
typedef long long ll;
ll stu_height[50001];
int l[50001],r[50001];
stack<int> stk;
//这个题感觉还好,除了又犯了一个小错误
//我们尽量让函数的功能变得形象,把每一步抽象出来这样的话,自己写的会更加稳,不至于蒙
void find_left(int x)
{
    int Max=-1,id,flag=0;
    while(!stk.empty()&&stu_height[x]>stu_height[stk.top()])
    {
        if(stu_height[stk.top()]>Max)
        {
            flag=1;//找到比自己矮的了
            id=stk.top();
            Max=stu_height[stk.top()];

        }
        stk.pop();
    }
    if(flag)   //找到比自己矮的就要那个最高的id
        l[x]=id;
    else      //没找到比自己矮的
        l[x]=0;
    stk.push(x);
}
void find_right(int x)
{
    int Max=-1,id,flag=0;
    while(!stk.empty()&&stu_height[x]>stu_height[stk.top()])
    {
        if(stu_height[stk.top()]>Max)
        {
           flag=1;
           id=stk.top();
           Max=stu_height[stk.top()];
        }
        stk.pop();
    }
    if(flag)
        r[x]=id;
    else
        r[x]=0;
        stk.push(x);
}
int main()
{
    int T;
    scanf("%d",&T);
    int cnt=1;
    while(T--)
    {
        while(stk.size())
            stk.pop();
        int i,N;
        scanf("%d",&N);
        for(i=1;i<=N;i++)
            scanf("%lld",&stu_height[i]);
        for(i=1;i<=N;i++)
        {
            find_left(i);
        }
        for(i=N;i>=1;i--)
        {
            find_right(i);
        }
        printf("Case %d:\n",cnt++);
        for(i=1;i<=N;i++)
            printf("%d %d\n",l[i],r[i]);
    }
    return 0;
}
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
The PostMessage function is a Windows API function that sends a message to the specified window or thread's message queue, without waiting for the recipient to process the message. This function is often used to send a message to a window to request that it perform a specific action or update its state. A hook is a mechanism that allows an application to intercept and handle events or messages before they are processed by the target window or thread. A hook function can be installed to intercept PostMessage calls before they are sent to the target window or thread. To install a hook for PostMessage, you can use the SetWindowsHookEx function with the WH_CALLWNDPROC hook type. This hook type allows you to intercept messages before they are processed by the target window's message queue. In the hook function, you can inspect the message and perform any necessary actions before passing it on to the target window. Here is an example of a hook function for PostMessage: ``` LRESULT CALLBACK PostMessageHook(int nCode, WPARAM wParam, LPARAM lParam) { if (nCode == HC_ACTION) { CWPSTRUCT* pMsg = (CWPSTRUCT*)lParam; if (pMsg->message == WM_MY_CUSTOM_MESSAGE) { // Handle custom message here return 0; } } return CallNextHookEx(NULL, nCode, wParam, lParam); } ``` In this example, the hook function intercepts messages with the custom message code WM_MY_CUSTOM_MESSAGE and handles them before passing them on to the target window. Note that the hook function must be installed using the SetWindowsHookEx function and must be removed using the UnhookWindowsHookEx function when it is no longer needed.
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值