結果

問題 No.2464 To DAG
ユーザー 👑 hos.lyrichos.lyric
提出日時 2023-09-09 01:16:28
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 414 ms / 2,000 ms
コード長 2,361 bytes
コンパイル時間 3,805 ms
コンパイル使用メモリ 119,296 KB
実行使用メモリ 38,400 KB
最終ジャッジ日時 2024-06-26 18:31:11
合計ジャッジ時間 22,350 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 335 ms
38,400 KB
testcase_03 AC 411 ms
13,312 KB
testcase_04 AC 385 ms
13,056 KB
testcase_05 AC 363 ms
13,056 KB
testcase_06 AC 351 ms
13,056 KB
testcase_07 AC 280 ms
9,344 KB
testcase_08 AC 329 ms
9,728 KB
testcase_09 AC 309 ms
8,832 KB
testcase_10 AC 320 ms
8,832 KB
testcase_11 AC 220 ms
7,040 KB
testcase_12 AC 176 ms
6,272 KB
testcase_13 AC 224 ms
7,168 KB
testcase_14 AC 264 ms
9,600 KB
testcase_15 AC 322 ms
12,032 KB
testcase_16 AC 172 ms
7,808 KB
testcase_17 AC 26 ms
5,376 KB
testcase_18 AC 104 ms
6,016 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 242 ms
9,472 KB
testcase_23 AC 245 ms
9,472 KB
testcase_24 AC 245 ms
9,728 KB
testcase_25 AC 249 ms
9,728 KB
testcase_26 AC 76 ms
5,376 KB
testcase_27 AC 409 ms
13,696 KB
testcase_28 AC 414 ms
13,696 KB
testcase_29 AC 411 ms
13,312 KB
testcase_30 AC 370 ms
9,216 KB
testcase_31 AC 375 ms
9,088 KB
testcase_32 AC 372 ms
9,216 KB
testcase_33 AC 328 ms
12,800 KB
testcase_34 AC 158 ms
7,808 KB
testcase_35 AC 231 ms
8,960 KB
testcase_36 AC 224 ms
9,088 KB
testcase_37 AC 202 ms
8,960 KB
testcase_38 AC 201 ms
8,960 KB
testcase_39 AC 6 ms
7,296 KB
testcase_40 AC 6 ms
7,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.conv, std.functional, std.range, std.stdio, std.string;
import std.algorithm, std.array, std.bigint, std.bitmanip, std.complex, std.container, std.math, std.mathspecial, std.numeric, std.regex, std.typecons;
import core.bitop;

class EOFException : Throwable { this() { super("EOF"); } }
string[] tokens;
string readToken() { for (; tokens.empty; ) { if (stdin.eof) { throw new EOFException; } tokens = readln.split; } auto token = tokens.front; tokens.popFront; return token; }
int readInt() { return readToken.to!int; }
long readLong() { return readToken.to!long; }

string COLOR(string s = "") { return "\x1b[" ~ s ~ "m"; }

bool chmin(T)(ref T t, in T f) { if (t > f) { t = f; return true; } else { return false; } }
bool chmax(T)(ref T t, in T f) { if (t < f) { t = f; return true; } else { return false; } }

int binarySearch(alias pred, T)(in T[] as) { int lo = -1, hi = cast(int)(as.length); for (; lo + 1 < hi; ) { const mid = (lo + hi) >> 1; (unaryFun!pred(as[mid]) ? hi : lo) = mid; } return hi; }
int lowerBound(T)(in T[] as, T val) { return as.binarySearch!(a => (a >= val)); }
int upperBound(T)(in T[] as, T val) { return as.binarySearch!(a => (a > val)); }


int N, M;
int[] A, B;

int[][] G;
bool[] del;
bool[] vis;

// returns vertex at found cycle
int dfs(int u) {
  debug {
    writeln("dfs ", u);
  }
  if (vis[u]) {
    return u;
  }
  vis[u] = true;
  for (; !G[u].empty; ) {
    const i = G[u].back;
    G[u].popBack;
    debug {
      writeln("  ", A[i], " -> ", B[i]);
    }
    const res = dfs(B[i]);
    if (~res) {
      del[i] = true;
      if (res != u) {
        vis[u] = false;
        return res;
      }
    }
  }
  vis[u] = false;
  return -1;
}

void main() {
  try {
    for (; ; ) {
      N = readInt;
      M = readInt;
      A = new int[M];
      B = new int[M];
      foreach (i; 0 .. M) {
        A[i] = readInt - 1;
        B[i] = readInt - 1;
      }
      
      G = new int[][N];
      foreach (i; 0 .. M) {
        G[A[i]] ~= i;
      }
      del = new bool[M];
      vis = new bool[N];
      foreach (u; 0 .. N) {
        dfs(u);
      }
      debug {
        writeln("G = ", G);
      }
      
      writeln(N, " ", del.count(false));
      foreach (i; 0 .. M) if (!del[i]) {
        writeln(A[i] + 1, " ", B[i] + 1);
      }
      stderr.writeln("========");
    }
  } catch (EOFException e) {
  }
}
0