回复: 0
跳转到指定楼层
上一主题 下一主题
收起左侧

菲德萨OA

全局:

2019(10-12月) 工程类 硕士 全职@fidessa - 猎头 - 视频面试  | | Fail | 应届毕业生

注册一亩三分地论坛,查看更多干货!

您需要 登录 才可以下载或查看附件。没有帐号?注册账号

x

Fidesa OA
Test two questions online:
Airport Scheduling Problem
/ * At an airport you have a timetable for arrivals and departures.
* You need to determine the minimum number of gates you * d need to provide so that all the planes can be placed at a gate as per their schedule.
* The arrival and departure times for each plane are presented in two arrays, sorted by arrival time, and you're told the total number of flights for the
* day. Assume that no planes remain overnight at the airport; all fly in and back out on the same day. Assume that if a plane departs in the same minute as another plane arrives, the arriving plane takes priority (ie you'll still need the gate for the departing plane). Write a function that returns
* the minimum number of gates needed for the schedules you're given.
* Example:
* arrQ = {900, 940, 950, 1100,1500,1800}
* depQ = {910,1200,1120, 1130,1900, 2000}
* flights = 6

[mw_shl_code = cpp, true] #include <algorithm>
#include <queue>

using namespace std;
class MinimumGates {

public:
        int findMinGates (vector <int> arrQ, vector <int> depQ, int flight) {
                sort (arrQ.begin (), arrQ.end ());
                sort (depQ.begin (), depQ.end ());
                int count = 0;
                int deppointer = 0;
                for (int i = 1; i <flight; i ++) {
                        if (arrQ [i]> = depQ [deppointer]) {
                                deppointer ++;
                        } else {
                                count ++;
                        }
                }
                return count;
        }
}; [/ mw_shl_code]


2. Matching Pair

Matching pairs
* You are given a String, input, contained of alphabetical letters with varying case.
* These letters should create pairs with one another, based on case. For example, the letter 'N forms a "matching pair' with the letter 'a', in that order.
* Rules:
* 1. The first letter must be upper-case.
* 2. Every upper-case letter must be followed by its lower-case version or any upper-case letter.
* 3. When an upper-case letter is followed by its lower-case version, those two letters are considered a "matching pair and can then be disregarded from further match consideration.
* 4. If any of these rules are broken or a lower-case letter is encountered that does not create a "matching pair 'with its nearest un-matched left neighbour, that letter and all following letters are considered" un-matched ".
* Output: Your method should return the zero-based index of the last matching lower-case letter, or -1 if no pairs exist.
* Limits: 0 <input length <10,000 characters The optimal method has a running time of O (input length).
* Sample input # 1
* ABba
* Sample output # 1
* 3

Solution:
[mw_shl_code = cpp, true] class MatchingPair {
public:
        int matchingpairs (const string & str) {
                if (! isUpperCase (str.at (0)) || str.size () == 0)
                        return -1;
                stack <char > stack;
                stack.push (str.at (0));
                int res = 0;
                for (int i = 1; i <str.size (); i ++) {
                        if (! isUpperCase (str.at (i)) ) {
                                char c = stack.top ();
                                if (c-32 == str.at (i)) {
                                        stack.pop ();
                                        res = i;
                                } else
                                        return res;
                        } else {
                                stack.push (str. at (i));
                        }
                }
                if (stack.empty ())
                        return str.size ()-1;
                else
                        return res;
        }

        bool isUpperCase (char ch) {
                string str = "ABCDEFGHIGKLMNOPQRSTUVWXYZ";
                int pos = str.find (ch);
                if (pos> = 0 && pos <26)
                        return true;
                else
                        return false;
        }
};
[/ mw_shl_code]




Spark Spark Hire Quesions:
您好!
本帖隐藏的内容需要积分高于 150 才可浏览
您当前积分为 0。
使用VIP即刻解锁阅读权限或查看其他获取积分的方式
游客,您好!
本帖隐藏的内容需要积分高于 150 才可浏览
您当前积分为 0。
VIP即刻解锁阅读权限查看其他获取积分的方式
Unlock interview details and practice with AI
Curated Interview Questions from Top Companies

评分

参与人数 1大米 +25 收起 理由
匿名用户-85RWH + 25

查看全部评分


上一篇:热带雨林加拿大new grad vo
下一篇:3M HIS Computional / MLE (NLP) intern 1h VO
您需要登录后才可以回帖 登录 | 注册账号
隐私提醒:
  • ☑ 禁止发布广告,拉群,贴个人联系方式:找人请去🔗同学同事飞友,拉群请去🔗拉群结伴,广告请去🔗跳蚤市场,和 🔗租房广告|找室友
  • ☑ 论坛内容在发帖 30 分钟内可以编辑,过后则不能删帖。为防止被骚扰甚至人肉,不要公开留微信等联系方式,如有需求请以论坛私信方式发送。
  • ☑ 干货版块可免费使用 🔗超级匿名:面经(美国面经、中国面经、数科面经、PM面经),抖包袱(美国、中国)和录取汇报、定位选校版
  • ☑ 查阅全站 🔗各种匿名方法

本版积分规则

>
快速回复 返回顶部 返回列表