結果

問題 No.241 出席番号(1)
ユーザー kou6839kou6839
提出日時 2015-08-10 17:29:02
言語 Java
(openjdk 23)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 1,991 bytes
コンパイル時間 2,584 ms
コンパイル使用メモリ 82,584 KB
実行使用メモリ 42,180 KB
最終ジャッジ日時 2024-11-30 21:32:15
合計ジャッジ時間 7,327 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
40,164 KB
testcase_01 AC 118 ms
41,156 KB
testcase_02 AC 126 ms
40,988 KB
testcase_03 AC 125 ms
41,188 KB
testcase_04 AC 131 ms
40,112 KB
testcase_05 AC 125 ms
41,100 KB
testcase_06 AC 107 ms
39,820 KB
testcase_07 AC 109 ms
40,016 KB
testcase_08 AC 112 ms
40,792 KB
testcase_09 AC 119 ms
41,160 KB
testcase_10 AC 104 ms
40,252 KB
testcase_11 AC 116 ms
41,036 KB
testcase_12 AC 110 ms
39,984 KB
testcase_13 AC 119 ms
41,428 KB
testcase_14 AC 153 ms
41,904 KB
testcase_15 AC 148 ms
41,384 KB
testcase_16 AC 112 ms
41,008 KB
testcase_17 AC 99 ms
39,772 KB
testcase_18 AC 117 ms
39,752 KB
testcase_19 AC 120 ms
41,448 KB
testcase_20 AC 110 ms
40,788 KB
testcase_21 AC 112 ms
40,120 KB
testcase_22 AC 118 ms
41,416 KB
testcase_23 AC 114 ms
40,380 KB
testcase_24 AC 149 ms
41,500 KB
testcase_25 AC 138 ms
41,936 KB
testcase_26 AC 140 ms
42,180 KB
testcase_27 AC 148 ms
41,608 KB
testcase_28 AC 148 ms
41,716 KB
testcase_29 AC 148 ms
41,520 KB
testcase_30 AC 131 ms
42,128 KB
testcase_31 AC 148 ms
41,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter;
import java.nio.file.spi.FileSystemProvider;
import java.util.*;
import java.util.prefs.BackingStoreException;

import javax.swing.text.Highlighter.Highlight;

class MaximumFlow {
	public ArrayList<Edge>[] G;
	private boolean[] used;
	
	public class Edge{
		int to;
		int cap;
		int rev;
		
		public Edge(int to,int cap, int rev){
			this.to = to;
			this.cap = cap;
			this.rev = rev;
		}
	}
	
	public MaximumFlow(int v){
		used = new boolean[v];
		G = new ArrayList[v];
		for(int i=0;i<v;i++){
			G[i]=new ArrayList<>();
		}
	}	
	
	public void addEdge(int from,int to, int cap){
		G[from].add(new Edge(to, cap, G[to].size()));
		G[to].add(new Edge(from, 0, G[from].size()-1));
	}
	
	private int dfs(int v, int t, int f){
		if(v==t) return f;
		used[v]=true;
		for(int i=0;i<G[v].size();i++){
			Edge edge = G[v].get(i);
			
			if(!used[edge.to] && edge.cap>0){
				int d = dfs(edge.to,t,Math.min(f,edge.cap));
				
				if(d>0){
					edge.cap-=d;
					G[edge.to].get(edge.rev).cap += d;
					return d;
				}
			}
		}
		
		return 0;
	}
	
	public int maxFlow(int s,int t){
		int flow = 0;
		for(;;){
			Arrays.fill(used, false);
			int f = dfs(s, t, Integer.MAX_VALUE);
			
			if(f==0) return flow;
			flow+=f;
		}
	}
}
public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] ng = new int[n];
		for(int i=0;i<n;i++) ng[i]=sc.nextInt();
		MaximumFlow mf = new MaximumFlow(2*n+2);
		for(int i=1;i<=n;i++){
			mf.addEdge(0, i, 1);
		}
		for(int i=0;i<n;i++){
			for(int j=0;j<n;j++){
				if(ng[i]!=j){
					mf.addEdge(i+1, j+n+1, 1);
				}
			}
		}
		for(int i=n+1;i<=2*n;i++){
			mf.addEdge(i, 2*n+1, 1);
		}
		int a = mf.maxFlow(0, 2*n+1);
		if(a != n ){
			System.out.println(-1);
		}else{
			t:for(int i=1;i<=n;i++){
				for(int j=0;j<mf.G[i].size();j++){
					if(mf.G[i].get(j).cap==0){
						System.out.println(mf.G[i].get(j).to-n-1);
						continue t;
					}
				}
			}
		}
		
	}
}
0