代码拉取完成,页面将自动刷新
using System;
using NUnit.Framework;
[TestFixture]
public class TestClass : TestClassBase
{
[TestCase("1 2 3 4 5", 0, 0)]
[TestCase("1 2 3 4 5", 1, 4)]
[TestCase("1 2 3 4 5", 2, 4)]
[TestCase("1 2 3 4 5", 3, 4)]
[TestCase("5 4 3 2 1", 1, 0)]
[TestCase("5 4 3 2 1", 2, 0)]
[TestCase("1 2 5 3 4", 1, 4)]
[TestCase("1 2 5 3 4", 2, 5)]
[TestCase("1 2 5 3 4", 3, 5)]
[TestCase("2 5 3 4 1", 1, 3)]
[TestCase("2 5 3 4 1", 2, 4)]
[TestCase("2 5 3 4 1", 3, 4)]
[TestCase("6 7 4 5 2 3 1", 1, 1)]
[TestCase("6 7 4 5 2 3 1", 2, 2)]
[TestCase("6 7 4 5 2 3 1", 3, 3)]
[TestCase("6 7 4 5 2 3 1", 4, 3)]
[TestCase("6 1 3 2 4 7", 1, 6)]
[TestCase("6 1 3 2 4 7", 2, 7)]
[TestCase("6 1 3 2 4 7", 3, 7)]
[TestCase("1 2 4 2 5 7 2 4 9 0", 1, 8)]
[TestCase("1 2 4 2 5 7 2 4 9 0", 2, 13)]
[TestCase("1 2 4 2 5 7 2 4 9 0", 3, 15)]
[TestCase("1 2 4 2 5 7 2 4 9 0", 4, 15)]
[TestCase("2 6 8 7 8 7 9 4 1 2 4 5 8", 2, 14)]
[TestCase("5 2 3 2 6 6 2 9 1 0 7 4 5 0", 2, 14)]
[TestCase("3 8 4 9 2 7 5 8 8 7", 1, 6)]
public void TestMethod(string pricesString, int k, int expectedResult)
{
var prices = Array.ConvertAll(pricesString.Split(), int.Parse);
var result = new Solution().MaxProfit(k, prices);
Assert.AreEqual(expectedResult, result);
}
[TestCase(10, 10)]
public void TestCaseGenerator(int n, int maxPrice)
{
for (var t = 0; t < 100; ++t)
{
var prices = GenerateIntegerArray(n, n, 1, maxPrice);
var k = Random.Next(1, n/2);
var stupidResult = new Solution().MaxProfitStupid(k, prices);
var result = new Solution().MaxProfit(k, prices);
if (stupidResult != result)
{
Console.WriteLine("Stupid result: {0}. Result: {1}.", stupidResult, result);
Console.WriteLine("k: {0}", k);
Console.WriteLine("Prices: {0}", string.Join(" ", prices));
Assert.Fail();
}
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。