QianYi Ke? 2020-04-04 12:31 采纳率: 100%
浏览 499
已采纳

问题如下,请用c++编程?

请用C++
Cameron and Jamie's kid is almost 3 years old! However, even though the child is more independent now, scheduling kid activities and domestic necessities is still a challenge for the couple.

Cameron and Jamie have a list of N activities to take care of during the day. Each activity happens during a specified interval during the day. They need to assign each activity to one of them, so that neither of them is responsible for two activities that overlap. An activity that ends at time t is not considered to overlap with another activity that starts at time t.

For example, suppose that Jamie and Cameron need to cover 3 activities: one running from 18:00 to 20:00, another from 19:00 to 21:00 and another from 22:00 to 23:00. One possibility would be for Jamie to cover the activity running from 19:00 to 21:00, with Cameron covering the other two. Another valid schedule would be for Cameron to cover the activity from 18:00 to 20:00 and Jamie to cover the other two. Notice that the first two activities overlap in the time between 19:00 and 20:00, so it is impossible to assign both of those activities to the same partner.

Given the starting and ending times of each activity, find any schedule that does not require the same person to cover overlapping activities, or say that it is impossible.

Input
The first line of the input gives the number of test cases, T. T test cases follow. Each test case starts with a line containing a single integer N, the number of activities to assign. Then, N more lines follow. The i-th of these lines (counting starting from 1) contains two integers Si and Ei. The i-th activity starts exactly Si minutes after midnight and ends exactly Ei minutes after midnight.

Output
For each test case, output one line containing Case #x: y, where x is the test case number (starting from 1) and y is IMPOSSIBLE if there is no valid schedule according to the above rules, or a string of exactly N characters otherwise. The i-th character in y must be C if the i-th activity is assigned to Cameron in your proposed schedule, and J if it is assigned to Jamie.

Limits
Time limit: 20 seconds per test set.
Memory limit: 1GB.
1 ≤ T ≤ 100.
0 ≤ Si < Ei ≤ 24 × 60.

Test set 1 (Visible Verdict)
2 ≤ N ≤ 10.

Test set 2 (Visible Verdict)
2 ≤ N ≤ 1000.

Sample

Input

4
3
360 480
420 540
600 660
3
0 1440
1 3
2 4
5
99 150
1 100
100 301
2 5
150 250
2
0 720
720 1440

Output

Case #1: CJC
Case #2: IMPOSSIBLE
Case #3: JCCJJ
Case #4: CC

Sample Case #1 is the one described in the problem statement. As mentioned above, there are other valid solutions, like JCJ and JCC.

In Sample Case #2, all three activities overlap with each other. Assigning them all would mean someone would end up with at least two overlapping activities, so there is no valid schedule.

In Sample Case #3, notice that Cameron ends an activity and starts another one at minute 100.

In Sample Case #4, any schedule would be valid. Specifically, it is OK for one partner to do all activities.

  • 写回答

2条回答 默认 最新

  • 白色一大坨 2020-04-04 23:15
    关注

    代码如下:

    #include <iostream>
    #include <string>
    #include <vector>
    #include <windows.h>
    using namespace std;
    
    
    struct timesection
    {
        int st;
        int et;
    };
    
    bool isoverlap(timesection t1, timesection t2)
    {
        if (t1.st<=t2.st && t1.et>t2.st) return true;
        if (t1.st<t2.et && t1.et>=t2.et) return true;
        if (t1.st>=t2.st && t1.et<=t2.et) return true;
        return false;
    }
    
    int main() {
        int i,j,k,l,n,m;
        bool ret;
        bool *col;
        int **matrix;
        vector<string> res;
        vector<timesection> Csec, Jsec;
        string r;
        timesection *sec;
        cin>>n;
        for (i=0;i<n;i++)
        {
            cin>>m;
            r = "";
            sec = new timesection[m];
            for (j=0;j<m;j++)
            {
                cin>>sec[j].st>>sec[j].et;
                if (j==0) 
                {
                    Csec.push_back(sec[j]);
                    r+="C";
                }
                else
                {
                    ret = true;
                    for (k=0;k<Csec.size();k++)
                    {
                        if (isoverlap(sec[j], Csec[k]))
                        {
                            ret = false;
                            break;
                        }
                    }
    
                    if(ret) 
                    {
                        Csec.push_back(sec[j]);
                        r+="C";
                        continue;
                    }
    
                    ret = true;
                    for (k=0;k<Jsec.size();k++)
                    {
                        if (isoverlap(sec[j], Jsec[k]))
                        {
                            ret = false;
                            break;
                        }
                    }
    
                    if(ret) 
                    {
                        Jsec.push_back(sec[j]);
                        r+="J";
                    }
                    else
                    {
                        r = "IMPOSSIBLE";
                        break;
                    }
                }
            }
            res.push_back(r);
            delete []sec;
            Csec.clear();
            Jsec.clear();
        }
    
        for (i=0;i<res.size();i++)
        {
            cout<<"Case #" << i+1 <<":"<<res[i]<<endl;
        }
        res.clear();
        system("pause");
        return 0;
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥20 机器学习能否像多层线性模型一样处理嵌套数据
  • ¥20 西门子S7-Graph,S7-300,梯形图
  • ¥50 用易语言http 访问不了网页
  • ¥50 safari浏览器fetch提交数据后数据丢失问题
  • ¥15 matlab不知道怎么改,求解答!!
  • ¥15 永磁直线电机的电流环pi调不出来
  • ¥15 用stata实现聚类的代码
  • ¥15 请问paddlehub能支持移动端开发吗?在Android studio上该如何部署?
  • ¥20 docker里部署springboot项目,访问不到扬声器
  • ¥15 netty整合springboot之后自动重连失效