예제 #1
0
        public void CarPooling_1()
        {
            var solution = new _1094_CarPooling();
            var result   = solution.CarPooling(new int[][] {
                new int[] { 2, 1, 5 },
                new int[] { 3, 3, 7 },
            }, 4);

            Assert.IsFalse(result);
        }
예제 #2
0
        public void CarPooling_3()
        {
            var solution = new _1094_CarPooling();
            var result   = solution.CarPooling(new int[][] {
                new int[] { 2, 1, 5 },
                new int[] { 3, 5, 7 },
            }, 3);

            Assert.IsTrue(result);
        }
예제 #3
0
        public void CarPooling_4()
        {
            var solution = new _1094_CarPooling();
            var result   = solution.CarPooling(new int[][] {
                new int[] { 3, 2, 7 },
                new int[] { 3, 7, 9 },
                new int[] { 8, 3, 9 },
            }, 11);

            Assert.IsTrue(result);
        }