結果
問題 | No.647 明太子 |
ユーザー | tokutaro |
提出日時 | 2020-03-27 05:15:07 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 323 ms / 4,500 ms |
コード長 | 1,019 bytes |
コンパイル時間 | 1,002 ms |
コンパイル使用メモリ | 83,448 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2025-01-02 08:06:11 |
合計ジャッジ時間 | 3,114 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 1 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 4 ms
6,816 KB |
testcase_10 | AC | 6 ms
6,820 KB |
testcase_11 | AC | 3 ms
6,820 KB |
testcase_12 | AC | 5 ms
6,816 KB |
testcase_13 | AC | 9 ms
6,816 KB |
testcase_14 | AC | 75 ms
6,816 KB |
testcase_15 | AC | 12 ms
6,820 KB |
testcase_16 | AC | 5 ms
6,820 KB |
testcase_17 | AC | 92 ms
6,816 KB |
testcase_18 | AC | 98 ms
6,816 KB |
testcase_19 | AC | 12 ms
6,816 KB |
testcase_20 | AC | 11 ms
6,816 KB |
testcase_21 | AC | 6 ms
6,820 KB |
testcase_22 | AC | 323 ms
6,816 KB |
testcase_23 | AC | 2 ms
6,820 KB |
ソースコード
#include <iostream> #include <vector> #include <map> #include <algorithm> #define REP(i, n) for (int i = 0; i < n; i++) using namespace std; int main(void) { int N; cin>>N; vector<int> A,B; REP(i, N) { int a,b; cin>>a>>b; A.push_back(a); B.push_back(b); } int M; cin>>M; map<int, int> mp; REP(i, M) { int X,Y; cin>>X>>Y; REP(j, N) { if (A.at(j) < X || B.at(j) > Y) continue; if (mp.find(i) != mp.end()) mp[i] += 1; else mp[i] = 1; } } vector<int> test; for (map<int, int>::iterator it = mp.begin(); it != mp.end(); ++it) test.push_back(it->second); if (test.size() == 0) { cout << 0 << endl; return 0; } sort(test.begin(), test.end()); int maximum = test.at(test.size() - 1); for (map<int, int>::iterator it = mp.begin() ; it != mp.end(); ++it) { if (it->second == maximum) cout << it->first + 1 << endl; } return 0; }