这名用户暂未设置签名。
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
[codec] ```cpp #include #include #include using namespace std; struct node { int index; int t; }a[1000]; bool cmp(node a, node b) { return a.t < b.t; } int main…