結果
| 問題 |
No.1679 マスゲーム
|
| ユーザー |
aspi
|
| 提出日時 | 2021-09-10 21:46:31 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 467 bytes |
| コンパイル時間 | 4,884 ms |
| コンパイル使用メモリ | 202,104 KB |
| 最終ジャッジ日時 | 2025-01-24 10:09:43 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 4 WA * 21 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
int main() {
long long N, A, B, T, ans = 0;
map<int, int>ma;
vector<int>Xpoints;
cin >> N;
for (int i = 0; i < N; i++) {
cin >> A >> B >> T;
if (A == 0) {
if (ma.count(B - T))ma[B + T]++;
else ma[B - T] = 1;
}
else Xpoints.push_back(B - T);
}
for (int t : Xpoints) {
if (ma.count(t))ans += ma[t];
}
cout << ans << endl;
}
aspi