結果

問題 No.1170 Never Want to Walk
ユーザー allegrogikenallegrogiken
提出日時 2020-08-14 23:35:36
言語 D
(dmd 2.106.1)
結果
WA  
実行時間 -
コード長 2,343 bytes
コンパイル時間 681 ms
コンパイル使用メモリ 101,824 KB
実行使用メモリ 11,888 KB
最終ジャッジ日時 2023-09-04 08:57:33
合計ジャッジ時間 3,307 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 1 ms
4,380 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 1 ms
4,380 KB
testcase_08 AC 1 ms
4,380 KB
testcase_09 AC 1 ms
4,380 KB
testcase_10 AC 2 ms
4,384 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 3 ms
4,380 KB
testcase_21 WA -
testcase_22 AC 50 ms
4,380 KB
testcase_23 AC 16 ms
4,376 KB
testcase_24 AC 51 ms
4,380 KB
testcase_25 AC 51 ms
4,384 KB
testcase_26 AC 32 ms
4,376 KB
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

void main() {
  problem();
}

void problem() {
  auto N = scan!int;
  auto A = scan!long;
  auto B = scan!long;
  auto S = scan!long(N);

  const LEFT_LIMIT = 0;
  const RIGHT_LIMIT = S[$ - 1];

  int[] Z = new int[RIGHT_LIMIT + 1];
  auto ans = new long[N];

  void solve() {
    foreach(i; 0..N-1) Z[S[i] .. S[i + 1] ] = i + 1;
    Z[$-1] = N;

    foreach(stationIndex; 0..N) {
      if (ans[stationIndex] > 0) continue;

      bool[int] visits = [stationIndex: true];
      bool[int] newVisits = visits;

      while(true) {
        bool[int] nextVisits;
        
        foreach(v; newVisits.keys) {
          visits[v] = true;

          auto right_s = S[v] + A > RIGHT_LIMIT ? RIGHT_LIMIT : S[v] + A;
          auto right_e = S[v] + B > RIGHT_LIMIT ? RIGHT_LIMIT : S[v] + B;
          [right_s, right_e].deb;
          [Z[right_s], Z[right_e]].deb;
          foreach(n; Z[right_s] .. Z[right_e]) {
            if (!(n in visits)) nextVisits[n] = true;
          }
          
          auto left_s = S[v] - B < LEFT_LIMIT ? LEFT_LIMIT : S[v] - B;
          auto left_e = S[v] - A < LEFT_LIMIT ? LEFT_LIMIT : S[v] - A;
          [left_s, left_e].deb;
          [Z[left_s], Z[left_e]].deb;
          foreach(n; Z[left_s] .. Z[left_e]) {
            if (!(n in visits)) nextVisits[n] = true;
          }
        }

        if (nextVisits.length == 0) break;
        newVisits = nextVisits;
        newVisits.deb;
      }

      visits.deb;
      const reach = visits.length;
      foreach(v; visits.keys) {
        ans[v] = reach;
      }
    }

    foreach(a; ans) writeln(a);
  }

  solve();
}

// ----------------------------------------------

import std.stdio, std.conv, std.array, std.string, std.algorithm, std.container, std.range, core.stdc.stdlib, std.math, std.typecons, std.numeric;
T[][] combinations(T)(T[] s, in int m) {   if (!m) return [[]];   if (s.empty) return [];   return s[1 .. $].combinations(m - 1).map!(x => s[0] ~ x).array ~ s[1 .. $].combinations(m); }
string scan(){ static string[] ss; while(!ss.length) ss = readln.chomp.split; string res = ss[0]; ss.popFront; return res; }
T scan(T)(){ return scan.to!T; }
T[] scan(T)(int n){ return n.iota.map!(i => scan!T()).array; }
void deb(T ...)(T t){ debug writeln(t); }
alias Point = Tuple!(long, "x", long, "y");

// -----------------------------------------------
0