typedef struct getval {
    int L;
    int R;
    int p;
    int lv;

    bool operator<(const getval &a) const {
        return lv > a.lv;
    }
} getval;

저렇게 하고 있는데
SQL문으로 치자면 lv desc, L desc 일케 주고 싶은데 방법이 없을려나여 ㅠㅠ

우선순위 큐 만들때 쓰는중임 도움점...