結果

問題 No.2910 単体ホモロジー入門
ユーザー hiro1729hiro1729
提出日時 2024-10-04 21:58:16
言語 Nim
(2.0.2)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 1,993 bytes
コンパイル時間 4,375 ms
コンパイル使用メモリ 67,756 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-04 21:58:22
合計ジャッジ時間 5,074 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 1 ms
6,816 KB
testcase_04 AC 1 ms
6,816 KB
testcase_05 AC 1 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 1 ms
6,816 KB
testcase_08 AC 1 ms
6,816 KB
testcase_09 AC 1 ms
6,820 KB
testcase_10 AC 1 ms
6,816 KB
testcase_11 AC 1 ms
6,816 KB
testcase_12 AC 1 ms
6,816 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 1 ms
6,816 KB
testcase_15 AC 1 ms
6,816 KB
testcase_16 AC 2 ms
6,820 KB
testcase_17 AC 1 ms
6,816 KB
testcase_18 AC 1 ms
6,820 KB
testcase_19 AC 1 ms
6,820 KB
testcase_20 AC 1 ms
6,820 KB
testcase_21 AC 1 ms
6,820 KB
testcase_22 AC 1 ms
6,816 KB
testcase_23 AC 1 ms
6,820 KB
testcase_24 AC 1 ms
6,820 KB
testcase_25 AC 1 ms
6,820 KB
testcase_26 AC 1 ms
6,816 KB
testcase_27 AC 1 ms
6,816 KB
testcase_28 AC 1 ms
6,816 KB
testcase_29 AC 1 ms
6,816 KB
testcase_30 AC 1 ms
6,816 KB
testcase_31 AC 1 ms
6,816 KB
testcase_32 AC 2 ms
6,820 KB
testcase_33 AC 1 ms
6,816 KB
testcase_34 AC 1 ms
6,816 KB
testcase_35 AC 1 ms
6,816 KB
testcase_36 AC 1 ms
6,816 KB
testcase_37 AC 1 ms
6,820 KB
testcase_38 AC 2 ms
6,816 KB
testcase_39 AC 1 ms
6,820 KB
testcase_40 AC 1 ms
6,816 KB
testcase_41 AC 2 ms
6,816 KB
testcase_42 AC 1 ms
6,816 KB
testcase_43 AC 1 ms
6,816 KB
testcase_44 AC 1 ms
6,820 KB
testcase_45 AC 1 ms
6,816 KB
testcase_46 AC 1 ms
6,820 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
/home/judge/data/code/Main.nim(1, 28) Warning: imported and not used: 'math' [UnusedImport]

ソースコード

diff #

import sequtils, strutils, math, algorithm

when not declared ATCODER_READER_HPP:
  const ATCODER_READER_HPP* = 1
  import streams, strutils, sequtils
#  proc scanf*(formatstr: cstring){.header: "<stdio.h>", varargs.}
  #proc getchar(): char {.header: "<stdio.h>", varargs.}
#  proc nextInt*(): int = scanf("%lld",addr result)
#  proc nextFloat*(): float = scanf("%lf",addr result)
  proc nextString*(f:auto = stdin): string =
    var get = false
    result = ""
    while true:
      let c = f.readChar
      #doassert c.int != 0
      if c.int > ' '.int:
        get = true
        result.add(c)
      elif get: return
  proc nextInt*(f:auto = stdin): int = parseInt(f.nextString)
  proc nextFloat*(f:auto = stdin): float = parseFloat(f.nextString)
#  proc nextString*():string = stdin.nextString()

  proc toStr*[T](v:T):string =
    proc `$`[T](v:seq[T]):string =
      v.mapIt($it).join(" ")
    return $v
  
  proc print0*(x: varargs[string, toStr]; sep:string):string{.discardable.} =
    result = ""
    for i,v in x:
      if i != 0: addSep(result, sep = sep)
      add(result, v)
    result.add("\n")
    stdout.write result
  
  var print*:proc(x: varargs[string, toStr])
  print = proc(x: varargs[string, toStr]) =
    discard print0(@x, sep = " ")

let N = nextInt()
let M = nextInt()
var g = newSeqWith(N, newSeq[int](N))
for i in 0 ..< M:
  let i = nextInt()
  let j = nextInt()
  g[i][j] = 1
  g[j][i] = 1
var s = 0
for i in 0 ..< 3:
  s = s or (1 shl nextInt())
for i in 1 ..< (1 shl N):
  if i != s:
    var p = newSeq[int]()
    for j in 0 ..< N:
      if (i and (1 shl j)) > 0:
        p.add(j)
    if len(p) <= 2:
      continue
    var q = (0 ..< len(p)).toSeq
    var qnx = newSeq[seq[int]]()
    while true:
      qnx.add(q)
      if q.nextPermutation() == false: break
    for q in qnx:
      var ok = true
      for j in 0 ..< len(p):
        if g[p[q[j]]][p[q[(j + 1) mod len(p)]]] == 0:
          ok = false
      if ok:
        echo "Yes"
        quit(0)
echo "No"
0