結果
問題 | No.151 セグメントフィッシング |
ユーザー | Onju |
提出日時 | 2015-02-12 23:56:37 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,107 bytes |
コンパイル時間 | 572 ms |
コンパイル使用メモリ | 63,628 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-23 19:25:56 |
合計ジャッジ時間 | 3,462 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
ソースコード
#include <iostream> #include <algorithm> #include <cstring> #include <climits> #include <vector> #define N_MAX 1000 #define Q_MAX 1000 using namespace std; typedef unsigned long long ULL; typedef long long LL; typedef struct { int pos; int num; char way; }Fish; int main() { int N, Q; char x[Q_MAX]; int y[Q_MAX], z[Q_MAX]; cin >> N >> Q; for (int i = 0; i < Q; ++i) cin >> x[i] >> y[i] >> z[i]; vector<Fish> fish; for (int i = 0; i < Q; ++i) { for (auto it = fish.begin(); it != fish.end(); ++it) { if ((*it).way == 'L') { if ((*it).pos == 0) (*it).way = 'R'; else --((*it).pos); } else { if ((*it).pos == N-1) (*it).way = 'L'; else ++((*it).pos); } } LL count = 0; switch (x[i]) { case 'L': fish.push_back(Fish{ y[i], z[i], 'L' }); break; case 'R': fish.push_back(Fish{ y[i], z[i], 'R' }); break; case 'C': for (auto it = fish.begin(); it != fish.end(); ++it) { if ((*it).pos >= y[i] && (*it).pos < z[i]) count += (*it).num; } cout << count << endl; break; } } return 0; }