Aller au contenuAller au pied de page
  • Emplois
  • Entreprises
  • Salaires
  • Pour les employeurs

      Boostez votre carrière

      Découvrez votre salaire potentiel, décrochez des emplois de rêve et partagez vos témoignages de manière anonyme.

      employer cover photo
      employer logo
      employer logo

      Optym

      Est-ce votre entreprise ?

      À propos
      Avis
      Salaires et avantages
      Emplois
      Entretiens
      Entretiens
      Recherches associées: Avis sur Optym | Offres d’emploi chez Optym | Salaires chez Optym | Avantages sociaux chez Optym
      Entretiens chez OptymEntretiens d’embauche pour Senior OPerations Research Scientist chez OptymEntretien chez Optym


      Glassdoor

      • À propos
      • Récompenses
      • Blog
      • Nous contacter
      • Guides

      Employeurs

      • Compte employeur gratuit
      • Centre employeur
      • Blog pour les employeurs

      Informations

      • Aide
      • Règles de la communauté
      • Conditions d'utilisation
      • Confidentialité et choix publicitaires
      • Ne pas vendre ni partager mes informations
      • Outil de consentement aux cookies

      Travailler avec nous

      • Annonceurs
      • Carrières
      Télécharger l'application

      • Parcourir par :
      • Entreprises
      • Emplois
      • Lieux

      Copyright © 2008-2026. Glassdoor LLC. « Glassdoor », son logo, « Worklife Pro » et « Bowls » sont des marques déposées de Glassdoor LLC.

      Entreprises suivies

      Tenez-vous au courant des dernières opportunités et profitez de conseils d’initiés en suivant les entreprises de vos rêves.

      Recherche d’emplois

      Obtenez des recommandations et des mises à jour personnalisées en démarrant vos recherches.

      Entretien pour Senior OPerations Research Scientist

      24 déc. 2022
      Employé (anonyme)
      Offre acceptée
      Expérience négative
      Entretien difficile

      Candidature

      J'ai postulé en ligne. J'ai passé un entretien chez Optym en sept. 2021

      Entretien

      A 3-hour written test followed by several chats with upper management and CEO The written test is take-home but has to be taken at a specific time. This test is based on data structures, algorithms, and operations research modeling. Miscommunication by recruiter lead to negative experience.

      Questions d'entretien [7]

      Question 1

      The cost of one unit of a stock on each day is given in an array of size n (# of days). The decision problem is to find days on which stocks should be bought and sold to maximize the profit by buying and selling of stocks. For example, if the given array is {100, 180, 260, 310, 40, 535, 695}, the maximum profit can be earned by buying on day 1, selling on day 4; buying on day 5 and selling on day 7. Provide a pseudocode of your algorithm for above problem. Also provide the running time of your algorithm.
      Répondre à cette question

      Question 2

      A company is planning to hire employee on different day-shifts to meet its workload demand. The employees in each day-shift can work for at most five consecutive days and require two days weekly off. For example, if the day-shift for an employee starts on Monday, he/she will have weekly off on Saturday and Sunday, whereas, a day-shift starting on Wednesday will have weekly off on Monday and Tuesday. A day-shift can start on any day of the week (day 1 = Monday, ……, day 7 = Sunday). If cost of each shift is c_1,⋯,c_7 and workload demand for number of people on any given day i in the month is D_i,0≤i≤N (where N is the number of days in the week). Write a Mixed Integer Programming formulation to minimize the total wage cost by the company while ensuring that workload demand is fulfilled.
      Répondre à cette question

      Question 3

      At the beginning of a dinner party, several participants shake hands with each other. Show that the participants that shook hands an odd number of times must be even in number.
      Répondre à cette question

      Question 4

      In an undirected connected graph G = (N, A), an Euler tour is a walk that starts at some node, visits each arc exactly once, and returns to the starting node. A graph is Eulerian if it contains an Euler tour. Show that in an Eulerian graph, the degree of every node is even. Next, show that if every node in a connected graph has an even degree, the graph is Eulerian. Establish the second result by describing an O(m) algorithm for determining whether a graph is Eulerian and, if so, will construct an Euler tour. (Hint: Describe an algorithm that decomposes any graph with only even-degree nodes into a collection of arc-disjoint cycles, and then converts the cycles into an Euler tour.)
      Répondre à cette question

      Question 5

      Printing Neatly: Consider the problem of neatly printing a paragraph on a printer. The input text is a sequence of n words of lengths l1, l2, . . . , ln, measured in characters. We want to print this paragraph neatly on a number of lines that hold a maximum of M characters each. Our criterion of “neatness” is as follows. If a given line contains words i through j, where i ≤ j , and we leave exactly one space between words, the number of extra space characters at the end of the line is M-J+i- ∑_(k=i)^j▒l_k , which must be nonnegative so that the words fit on the line. We wish to minimize the sum, over all lines except the last, of the cubes of the numbers of extra space characters at the ends of lines. Give a dynamic-programming algorithm to print a paragraph of n words neatly on a printer. Analyze the running time and space requirements of your algorithm.
      Répondre à cette question

      Question 6

      Suppose that a network G = (N, A) contains no negative cycle. In this network, let fij denote the maximum amount by which we can decrease the length of arc (i, j) without creating any negative cycle, assuming all other arc lengths are held constant. Describe an efficient algorithm for determining fij for each arc (i, j).
      Répondre à cette question

      Question 7

      Cutting stock problem. The production of paper or cloth often uses the following process. We first produce the paper on long rolls which we then cut to meet specific demand requirements. The cutting stock problem is to meet the specified demand by using the minimum number of rolls. Suppose that the rolls all have length L and that we have a demand of di for smaller rolls of size Li • There might be many ways to cut any roll into smaller rolls. For example, if L = 50 and the Li have lengths 10, 15, 25, 30, we could cut the rolls into several, different patterns: for example, (1) 5 rolls of size 10; (2) 3 rolls of size 15; (3) 2 rolls of size 10 and 1 roll of size 25. Note that in the first pattern, we use the entire roll of size L, but in the other two patterns we incur a waste of 5. Let P denote the collection of all patterns, and for any pattern p ∈ P, let ni,p denote the number of small rolls of size Li in pattern p. (a) Letting xp be a nonnegative integer variable indicating how many rolls we cut into pattern p, show how to formulate the cutting stock problem of finding the fewest number of large rolls to meet the specified demands as an optimization model with a variable for each cutting pattern. (b) Suppose that we wish to cut a single roll of size L into sub-rolls and that we receive a profit of πi for every sub-roll of size Li that we use in the solution. Show how to formulate this problem as an integer knapsack problem. (c) Show how to use the column generation technique to solve the linear programming relaxation of the cutting stock problem in part (a), using knapsack problems of the form stated in part (b) to price out columns.
      Répondre à cette question
      5