-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathF.java
143 lines (139 loc) · 4.05 KB
/
F.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
import java.util.*;
import java.io.*;
public class DoubleKnapscak {
public static void main(String [] args) {
Reader in = new Reader ();
Writer out = new Writer ();
int n = in.nextInt();
long [] a = new long [n + 1];
long [] b = new long [n + 1];
for(int i = 1; i <= n; i++) {
a[i] = in.nextInt();
a[i] += a[i - 1];
}
for(int i = 1; i <= n; i++) {
b[i] = in.nextInt();
b[i] += b[i - 1];
}
boolean rev = (a[n] > b[n]);
for(int i = 1; i <= n; i++) {
if(a[n] > b[n]) {
long tmp = a[i];
a[i] = b[i];
b[i] = tmp;
}
}
int opt[] = new int [n + 1];
int last[] = new int [n + 1];
Arrays.fill(last, -1);
int pt = 0;
ArrayList <Integer> arr[] = new ArrayList [2];
arr[0] = new ArrayList <> ();
arr[1] = new ArrayList <> ();
for(int i = 0; i <= n; i++) {
while(pt <= n && b[pt] <= a[i]) {
++pt;
}
opt[i] = pt - 1;
int dif = (int)(a[i] - b[opt[i]]);
if(last[dif] == -1) {
last[dif] = i;
} else {
for(int x = last[dif] + 1; x <= i; x++) {
arr[0].add(x);
}
for(int x = opt[last[dif]] + 1; x <= opt[i]; x++) {
arr[1].add(x);
}
break;
}
}
int cur = rev ? 1 : 0;
for(int i = 0; i < 2; i++) {
out.writeln(arr[cur].size());
for(Integer j : arr[cur]) {
out.write(j + " ");
}
out.writeln("");
cur ^= 1;
}
out.flush();
}
static class Reader {
private StringTokenizer a;
private BufferedReader b;
Reader () {
a = null;
b = new BufferedReader (new InputStreamReader (System.in));
}
public String next () {
while(a == null || !a.hasMoreTokens()) {
try {
a = new StringTokenizer (b.readLine());
} catch (IOException e) {
e.printStackTrace();
}
}
return a.nextToken();
}
public int nextInt() {
return Integer.parseInt(this.next());
}
public long nextLong () {
return Long.parseLong(this.next());
}
public double nextDouble () {
return Double.parseDouble(this.next());
}
public String nextLine() {
try {
return b.readLine();
} catch (IOException e) {
e.printStackTrace();
}
return "";
}
}
static class Writer {
private PrintWriter a;
private StringBuffer b;
Writer () {
a = new PrintWriter (System.out);
b = new StringBuffer ("");
}
public void write (Object s) {
b.append(s);
}
public void writeln(Object s) {
b.append(s).append('\n');
}
public void flush () {
a.print(b);
a.flush();
a.close();
}
}
static class Pair implements Comparator <Pair> {
int first;
int second;
Pair (int a, int b) {
this.first = a;
this.second = b;
}
Pair (Pair a) {
this.first = a.first;
this.second = a.second;
}
Pair () {}
public String toString () {
return "[" + first + ", " + second + "]";
}
public int compare (Pair a, Pair b) {
if(a.first == b.first) {
return a.second - b.second;
} else {
return a.first - b.first;
}
}
}
}