原题链接__戳我噢 【思路】 (区间)DP F[I][J]表示前i本书分给j个人用的最短时间 由于每一次j的状态由比j小的状态得出,所以要先枚举j,然后枚举i,接着枚举上一次抄书的人是谁 我觉得,难点在于输出 具体见代码 压行压到手抽筋 #include<iostream> #include<cstdio> #include<cstring> using namespace std; inline int read(){ char chr=getchar();int f=1,ans=0; while(!isdigit(ch...