#!/usr/bin/env python
# -*- coding:utf-8 -*-
from typing import List
# 思路: 动态规划
# 每天结束后有两种持有状态,每个持有状态又各自分两种情况,所以一共四种情况.
2018-01-26