結果

問題 No.647 明太子
ユーザー dazydazy
提出日時 2018-05-12 20:00:50
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 37 ms / 4,500 ms
コード長 1,097 bytes
コンパイル時間 1,300 ms
コンパイル使用メモリ 162,172 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-28 09:41:48
合計ジャッジ時間 2,248 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 3 ms
6,940 KB
testcase_13 AC 4 ms
6,940 KB
testcase_14 AC 28 ms
6,944 KB
testcase_15 AC 5 ms
6,940 KB
testcase_16 AC 3 ms
6,944 KB
testcase_17 AC 35 ms
6,944 KB
testcase_18 AC 37 ms
6,944 KB
testcase_19 AC 7 ms
6,940 KB
testcase_20 AC 7 ms
6,940 KB
testcase_21 AC 4 ms
6,940 KB
testcase_22 AC 13 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:38:13: warning: ‘max’ may be used uninitialized in this function [-Wmaybe-uninitialized]
   38 |             if(m[i][2] == max) {
      |             ^~

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
#define fastcin {\
    cin.tie(0);\
    ios::sync_with_stdio(false);\
}
#define REP(i, a, b) for(int i = a; i < b; i++)
#define RREP(i, a, b) for(int i = a; i > b; i--)
#define print(x) cout << x << "\n"
#define SORT(a, n) sort(a, a+n);
#define REVERSE(a,n) reverse(a,a+n);
#define VSORT(v) sort(v.begin(), v.end());
#define VREVERSE(v) reverse(v.begin(), v.end());
#define MOD 1000000007
typedef long long ll;

int main() {
    fastcin;
    int N;
    cin >> N;
    int q[10000][2];
    REP(i, 0, N) cin >> q[i][0] >> q[i][1];

    int M;
    cin >> M;
    int m[1000][3] = {}, max, count;
    REP(i, 0, M) {
        cin >> m[i][0] >> m[i][1];
        REP(j, 0, N) {
            if(m[i][0]<=q[j][0] && m[i][1]>=q[j][1]) m[i][2]++;
        }
        if(max < m[i][2]) max = m[i][2];
    }

    vector<int> k;
    if(max) {
        REP(i, 0, M) {
            if(m[i][2] == max) {
                k.push_back(i+1);
            }
        }
    }

    int s = k.size();
    if(s!=0) {
        REP(i, 0, s) print(k[i]);
    } else print(0);
    return 0;
}
0