vector<int> s{x, y, z}; sort(ALL(s)); TLE,int s[] = {x, y, z}; sort(s, s + 3); AC。
vector<int> s{x, y, z}; sort(ALL(s));
int s[] = {x, y, z}; sort(s, s + 3);