【题目链接】 题目意思 每个案例给你一串01字符,0表示红灯,1表示绿灯,每一秒之后都会改变所有的灯的状态,1变0,0变1,只能通过绿灯,求任意两点距离的总和。 样例输入 3 101 011 11010 样例输出 12 15 43 Hint For the first sample test case, it’s easy to calculate that t(0,1)=1, t(0,2)=2, t(0,3)=3, t(1,2)=2, t(1,3)=3 and t(2,3)=1, so the answer is 1+2+3+2+3+1=12. For the second sa...