結果
問題 | No.647 明太子 |
ユーザー | squid |
提出日時 | 2018-02-09 22:41:00 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 930 bytes |
コンパイル時間 | 1,252 ms |
コンパイル使用メモリ | 160,604 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-07 21:53:28 |
合計ジャッジ時間 | 2,312 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 10 ms
5,376 KB |
testcase_02 | AC | 11 ms
5,376 KB |
testcase_03 | AC | 10 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 13 ms
5,376 KB |
testcase_20 | AC | 12 ms
5,376 KB |
testcase_21 | AC | 12 ms
5,376 KB |
testcase_22 | AC | 20 ms
5,376 KB |
testcase_23 | WA | - |
ソースコード
#include<bits/stdc++.h> using namespace std; //constant const long long int inf = 1<<30; const int N = 1e4+1; const int M = 1e3+1; //variable int cnt_ment[M]; int a[N],b[N]; int x[M],y[M]; //function int main() { int n,m; cin>>n; for(int i=0; i<n; i++){ cin>>a[i]>>b[i]; } cin>>m; for(int i=0; i<m; i++){ cin>>x[i]>>y[i]; } for(int i=0; i<N; i++){ for(int j=0; j<M; j++){ if(a[i]>=x[j]&&b[i]<=y[j]){ cnt_ment[j]++; } } } vector<int> ans; int maxi=-1; for(int i=0; i<m; i++){ maxi=max(maxi,cnt_ment[i]); if(maxi==cnt_ment[i]){ ans.push_back(i); } } if(maxi==0){ cout<<0<<endl; return 0; } for(int i=0; i<ans.size(); i++){ cout<<ans[i]+1<<endl; } /*for(int i=0; i<m; i++){ cout<<cnt_ment[i]<<' '; }*/ return 0; }