結果

問題 No.1673 Lamps on a line
ユーザー kpinkcatkpinkcat
提出日時 2023-09-14 10:31:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 618 bytes
コンパイル時間 2,086 ms
コンパイル使用メモリ 201,812 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-01 18:03:57
合計ジャッジ時間 4,392 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 86 ms
6,940 KB
testcase_03 AC 84 ms
6,940 KB
testcase_04 AC 150 ms
6,940 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:17:20: warning: 'n' is used uninitialized [-Wuninitialized]
   17 |     vector<int> a(n+1);
      |                   ~^~
main.cpp:16:9: note: 'n' declared here
   16 |     int n, q, cnt = 0;
      |         ^

ソースコード

diff #

#include <bits/stdc++.h>
#include<iostream>
#include<map>
#include<vector>
#include <algorithm>
#include<math.h>
#include <iomanip>
#include<set>
#include <numeric>
#include<string>
using ll = long long;
using namespace std;

int main()
{
    int n, q, cnt = 0;
    vector<int> a(n+1);
    cin >> n >> q;
    for(int i = 0; i < q; i++){
        int l , r;
        cin >> l >> r;
        for (int j = l; j <= r; j++){
            if (a[j]){
                a[j] = 0;
                cnt--;
            } else {
                a[j]++;
                cnt++;
            }
        }
        cout << cnt << endl;
    }
}
0