现有如下C++代码,意图对存储学生信息的vector按成绩降序排序,成绩相同时按姓名字典序升序排列:```cpp
struct Student { std::string name; int score; };
int main() { std::vector<Student> stu = {{"Bob", 90}, {"Alice", 90}, {"Charlie", 85}}; std::sort(stu.begin(), stu.end(), 【此处填入比较器】); return 0; }