結果
問題 | No.1285 ゴミ捨て |
ユーザー | ぷら |
提出日時 | 2020-11-13 21:31:28 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 190 ms / 2,000 ms |
コード長 | 472 bytes |
コンパイル時間 | 1,884 ms |
コンパイル使用メモリ | 177,108 KB |
実行使用メモリ | 22,784 KB |
最終ジャッジ日時 | 2024-11-28 21:43:00 |
合計ジャッジ時間 | 3,754 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 22 |
ソースコード
#include <bits/stdc++.h> using namespace std; #define int long long typedef pair<int,int> P; int INF = 3e18; int mod = 1e9+7; int dx[4] = {1, 0,-1, 0}; int dy[4] = {0, 1, 0,-1}; signed main() { int N; cin >> N; vector<int>A(N); map<int,int>Mp; int ans = 0; for(int i = 0; i < N; i++) { cin >> A[i]; Mp[A[i]]++; ans = max(ans,Mp[A[i]]+Mp[A[i]+1]); ans = max(ans,Mp[A[i]]+Mp[A[i]-1]); } cout << ans << endl; }