結果
問題 | No.120 傾向と対策:門松列(その1) |
ユーザー | nksk38 |
提出日時 | 2017-07-18 23:09:31 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,097 bytes |
コンパイル時間 | 1,112 ms |
コンパイル使用メモリ | 90,980 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-08 11:06:10 |
合計ジャッジ時間 | 1,783 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
ソースコード
#include<cstdio> #include<iostream> #include<algorithm> #include<string> #include<queue> #include<vector> #include<functional> #include<cmath> #include<map> #include<stack> #include<set> #include<numeric> #include<limits> #define all(x) (x).begin(),(x).end() #define rall(x) (x).rbegin(),(x).rend() using namespace std; typedef long long ll; typedef pair<int, int> pi; typedef pair<ll, ll> pl; typedef pair<ll, string> pls; queue<ll> q; int main() { int T; cin >> T; for (int i = 0; i < T; i++) { map<ll, ll> m; int N; cin >> N; ll L[101], num = 1, ans = 0; for (int j = 0; j < N; j++) { cin >> L[j]; q.push(L[j]); } ll cnt = 0,a[3],j = 0; for (int i = 0; i < 1000; i++) { ll num = 0; if (!q.empty()) { num = q.front(); q.pop(); } else break; if (num != 0) { if (m[num] != 1) { m[num] = 1; a[j++] = num; cnt++; } else { q.push(num); } if (cnt >= 3) { ans++; cnt = 0; j = 0; for (int k = 0; k < 3; k++) { m[a[k]] = 0; } } } } cout << ans << endl; } return 0; }