悬关,求调

P4148 简单题

```cpp nth_element(order+1,order+mid,order+r+1,cmp); ``` 不是从1开始,而是从l开始 改为 ``` nth_element(order+l,order+mid,order+r+1,cmp); ```
by ZYLZPP @ 2024-04-03 12:51:10


|