luyencode / comments

Server lưu trữ bình luận trên Luyện Code
https://luyencode.net
6 stars 3 forks source link

https://oj.luyencode.net/problem/HIGHCARD #693

Open utterances-bot opened 2 years ago

utterances-bot commented 2 years ago

Goku chơi bài - Luyện Code Online

https://luyencode.net/problem/HIGHCARD

TrungAzieL commented 2 years ago

Đây là lời giải của mình đã AC. Nếu bạn đã cố gắng mà chưa làm được thì có thể tham khảo lời giải của mình.

Xem code AC

``` #include using namespace std; int n, t, cnt; bool chk[100003]; int main() { ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0); cin >> n; for (int i=0; i> t; chk[t] = 1; } for (int i=0; i<=2*n; ++i) { if (!chk[i] && cnt > 0) cnt--; else if (chk[i]) cnt++; else cnt = 0; } cout << n - cnt; return 0; } ```

silent1711 commented 1 year ago

check=2*n-a[i]-dem-n+i; if(check>0)dem++;