QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#351605#4513. Slide ParadeSampsonYW0 2481ms49368kbC++142.1kb2024-03-12 08:24:312024-03-12 08:24:33

Judging History

你现在查看的是最新测评结果

  • [2024-03-12 08:24:33]
  • 评测
  • 测评结果:0
  • 用时:2481ms
  • 内存:49368kb
  • [2024-03-12 08:24:31]
  • 提交

answer

#include <bits/stdc++.h>
#define db double
#define re register
#define il inline
#define ll long long
#define ull unsigned ll
#define i128 __int128
#define pii pair<int, int>
#define fi first
#define se second
#define eb emplace_back
#define SZ(v) (int)v.size()
#define ALL(v) v.begin(), v.end()
#define mems(v, x) memset(v, x, sizeof(v))
#define FOR(i, L, R) for(re int i = (L); i <= (R); ++i)
#define ROF(i, R, L) for(re int i = (R); i >= (L); --i)
#define LS i << 1, l, mid
#define RS i << 1 | 1, mid + 1, r
using namespace std;
#define N 405
#define M 5005
int n, m, u[M], v[M], mt[N];
vector<int> e[N]; bool vis[N];
il bool dfs(int x) {
  for(auto y : e[x]) if(!vis[y]) {
    vis[y] = 1; if(!mt[y] || dfs(mt[y])) return mt[y] = x, mt[x] = y, 1;
  }
  return 0;
}
namespace euler {
  vector<int> e[N], ns;
  il void add(int x, int y) {e[x].eb(y);}
  il void clr() {FOR(i, 1, n) vector<int>().swap(e[i]);}
  il void dfs(int x) {
    while(!e[x].empty()) {
      int y = e[x].back(); e[x].pop_back(); dfs(y);
    }
    ns.eb(x);
  }
  il void solve() {
    vector<int>().swap(ns);
    dfs(1), reverse(ALL(ns));
    cout << SZ(ns) << "\n";
    for(auto x : ns) cout << x << " ";
    cout << "\n";
  }
}
il void WORK(int TC) {
  cout << "Case #" << TC << ": ";
  cin >> n >> m;
  FOR(i, 1, n * 2)
    vector<int>().swap(e[i]), mt[i] = 0;
  FOR(i, 1, m) cin >> u[i] >> v[i], e[u[i]].eb(v[i] + n);
  FOR(i, 1, n) {
    mems(vis, 0);
    if(!dfs(i)) {cout << "IMPOSSIBLE\n"; return ;}
  }
  // cerr << "ok\n";
  // FOR(i, 1, n) cerr << i << " " << mt[i] << "\n";
  euler::clr();
  FOR(i, 1, m) {
    int x = u[i], y = v[i] + n;
    if(mt[x] != y) {
      int p = mt[y];
      mems(vis, 0), vis[y] = 1;
      mt[mt[x]] = mt[p] = 0;
      if(!dfs(p)) {cout << "IMPOSSIBLE\n"; return ;}
      mt[x] = y, mt[y] = x;
    }
    FOR(u, 1, n) if(mt[u] <= n) while(1);
    FOR(u, 1, n) euler::add(u, mt[u] - n);
  }
  // cerr << "ok\n";
  euler::solve();
}
int main() {
  ios::sync_with_stdio(0);
  cin.tie(0), cout.tie(0);
  int T, TC = 0; cin >> T;
  while(T--) WORK(++TC);
  cerr << 1.0 * clock() / CLOCKS_PER_SEC;
  return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 0
Wrong Answer
time: 1ms
memory: 3760kb

input:

100
5 8
1 2
1 3
1 4
1 5
2 1
3 1
4 1
5 1
5 10
1 3
1 4
2 3
2 5
3 1
3 4
3 5
4 2
5 1
5 3
5 10
1 4
2 3
2 5
3 1
3 5
4 2
4 3
4 5
5 1
5 2
3 6
1 2
1 3
2 1
2 3
3 1
3 2
5 10
1 2
1 5
2 3
2 4
3 1
4 3
4 5
5 2
5 3
5 4
4 10
1 2
1 3
1 4
2 1
2 3
2 4
3 1
3 4
4 2
4 3
5 10
1 2
1 3
2 1
2 4
3 1
3 5
4 2
4 5
5 3
5 4
5 10
1 ...

output:

Case #1: IMPOSSIBLE
Case #2: 51
1 4 2 5 3 1 4 2 3 5 1 4 2 3 5 1 4 2 3 5 1 3 4 2 5 1 4 2 5 3 1 4 2 5 3 1 4 2 3 5 1 4 2 5 3 1 3 4 2 5 1 
Case #3: 51
1 4 3 1 4 2 5 2 3 5 1 4 5 2 3 1 4 3 1 4 2 5 2 3 5 1 4 2 3 5 1 4 3 1 4 3 1 4 2 5 2 5 2 3 5 1 4 2 3 5 1 
Case #4: 19
1 3 2 1 2 3 1 2 3 1 3 2 1 3 2 1 2 3 1 ...

result:

wrong answer the slide from 3 to 4 hasn't be used (test case 25)

Test #2:

score: 0
Wrong Answer
time: 2481ms
memory: 49368kb

input:

100
199 4980
1 95
1 96
1 105
1 124
1 130
1 131
1 135
1 137
1 139
1 140
1 141
1 147
1 155
1 172
1 174
1 179
1 183
1 188
1 193
1 196
1 197
2 3
2 5
2 13
2 14
2 17
2 20
2 24
2 26
2 30
2 41
2 44
2 45
2 52
2 56
2 67
2 70
2 71
2 74
2 78
2 84
2 85
2 90
2 92
2 93
2 97
2 107
2 111
2 113
2 122
2 124
2 128
2 13...

output:

Case #1: IMPOSSIBLE
Case #2: IMPOSSIBLE
Case #3: 1000001
1 67 142 75 191 179 161 23 100 22 40 99 82 68 129 90 113 27 160 88 172 52 57 110 86 194 62 49 143 192 181 156 174 35 123 58 152 133 137 108 6 186 105 36 157 38 8 2 148 4 39 43 195 29 154 73 41 115 72 176 190 30 45 101 171 112 121 117 141 187 8...

result:

wrong answer the slide from 3 to 4 hasn't be used (test case 27)