結果
問題 | No.1170 Never Want to Walk |
ユーザー | pes_magic |
提出日時 | 2020-08-14 21:49:38 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,740 bytes |
コンパイル時間 | 880 ms |
コンパイル使用メモリ | 79,744 KB |
実行使用メモリ | 7,552 KB |
最終ジャッジ日時 | 2024-10-10 14:59:44 |
合計ジャッジ時間 | 7,011 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,820 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | AC | 2 ms
6,816 KB |
testcase_11 | AC | 2 ms
6,820 KB |
testcase_12 | AC | 4 ms
6,816 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 3 ms
6,820 KB |
testcase_16 | AC | 3 ms
6,820 KB |
testcase_17 | WA | - |
testcase_18 | AC | 4 ms
6,816 KB |
testcase_19 | WA | - |
testcase_20 | AC | 3 ms
6,816 KB |
testcase_21 | AC | 3 ms
6,816 KB |
testcase_22 | AC | 4 ms
6,820 KB |
testcase_23 | AC | 4 ms
6,816 KB |
testcase_24 | AC | 3 ms
6,816 KB |
testcase_25 | AC | 3 ms
6,816 KB |
testcase_26 | AC | 3 ms
6,820 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | AC | 373 ms
7,488 KB |
testcase_33 | AC | 383 ms
7,244 KB |
testcase_34 | AC | 398 ms
7,552 KB |
testcase_35 | AC | 392 ms
7,400 KB |
testcase_36 | AC | 366 ms
7,468 KB |
testcase_37 | WA | - |
testcase_38 | AC | 393 ms
7,544 KB |
ソースコード
#include <iostream> #include <vector> #include <queue> using namespace std; int main(){ int N, A, B; while(cin >> N >> A >> B){ vector<int> x(N); for(int i=0;i<N;i++) cin >> x[i]; auto getIdx = [&](int val){ int L = -1, R = N; while(R-L > 1){ int mid = (L+R)/2; if(x[mid] < val) L = mid; else R = mid; } return R; }; vector<int> res(N, 0); vector<int> visit(N, -1); for(int i=0;i<N;i++){ if(visit[i] != -1) continue; queue<int> qu; qu.push(i); vector<int> set; visit[i] = i; while(!qu.empty()){ int p = qu.front(); qu.pop(); set.push_back(p); int ms = getIdx(x[p]-B), me = getIdx(x[p]-A+1); int ps = getIdx(x[p]+A), pe = getIdx(x[p]+B+1); for(int j=ms;j<me;j++){ if(visit[j] != -1) break; visit[j] = i; qu.push(j); } for(int j=me-1;j>=ms;j--){ if(visit[j] != -1) break; visit[j] = i; qu.push(j); } for(int j=ps;j<pe;j++){ if(visit[j] != -1) break; visit[j] = i; qu.push(j); } for(int j=pe-1;j>=ps;j--){ if(visit[j] != -1) break; visit[j] = i; qu.push(j); } } for(auto& t : set) res[t] = set.size(); } for(auto& t : res) cout << t << endl; } }