祁东火车站进站有免费核酸检测吗?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了祁东火车站进站有免费核酸检测吗?相关的知识,希望对你有一定的参考价值。
祁东火车站进站是有免费的核酸检测的。 参考技术A 有的,据我所知,祁东火车站是有免费核酸检测的 参考技术B 肯定是要的 现在由于疫情防控的需要,坐火车必须要提供四十八小时之内的核酸证明才可以,不然是不允许进入车站内登车的。 参考技术C 火车站做核酸检测是否需要交钱是要看每个地方的规定,大多数的火车站做核酸检测都是免费的,也就是乘客不需要交钱直接就可以做,做完就可以走。 参考技术D 肯定是要的现在由于疫情防控的需要,坐火车必须要提供四十八小时之内的核酸证明才可以,不然是不允许进入车站内登车的。火车进站,华为
import java.util.*;
public class Main {
static List<String> res;
static Stack<Integer> stk;
static void dfs(int[] a, int n, int u, String path, int times) {
if(times == n) {
res.add(path);
return;
}
if(!stk.isEmpty()) { // 出站
int t = stk.pop();
dfs(a, n, u, path + t + " ", times+1);
stk.push(t);
}
if(n == u) return;
stk.push(a[u]);
dfs(a, n, u+1, path, times);
stk.pop();
}
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
while(sc.hasNext()) {
int n = sc.nextInt();
int[] a = new int[n];
for(int i=0; i < n; i++)
a[i] = sc.nextInt();
res = new ArrayList<>();
stk = new Stack<>();
dfs(a, n, 0, "", 0);
Collections.sort(res);
for(int i=0; i < res.size(); i++) {
System.out.println(res.get(i));
}
}
}
}
以上是关于祁东火车站进站有免费核酸检测吗?的主要内容,如果未能解决你的问题,请参考以下文章