-
-
Notifications
You must be signed in to change notification settings - Fork 151
Expand file tree
/
Copy pathContestTable.tsx
More file actions
337 lines (320 loc) · 9.87 KB
/
ContestTable.tsx
File metadata and controls
337 lines (320 loc) · 9.87 KB
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
import React from "react";
import { useLocation } from "react-router-dom";
import { Alert, Spinner, Table } from "reactstrap";
import {
useMergedProblemMap,
useProblemModelMap,
useVirtualContestSubmissions,
} from "../../../../api/APIClient";
import { ProblemLink } from "../../../../components/ProblemLink";
import { TweetButton } from "../../../../components/TweetButton";
import MergedProblem from "../../../../interfaces/MergedProblem";
import ProblemModel, {
isProblemModelWithDifficultyModel,
isProblemModelWithTimeModel,
ProblemModelWithDifficultyModel,
ProblemModelWithTimeModel,
} from "../../../../interfaces/ProblemModel";
import { ProblemId, UserId } from "../../../../interfaces/Status";
import { clipDifficulty, ordinalSuffixOf } from "../../../../utils";
import { getCurrentUnixtimeInSecond } from "../../../../utils/DateUtil";
import {
calculatePerformances,
makeBotRunners,
} from "../../../../utils/RatingSystem";
import { VirtualContestItem, VirtualContestProblem } from "../../types";
import { ShowDifficultyMode } from "../../../../utils/ShowDifficultyMode";
import { ContestTableRow } from "./ContestTableRow";
import { FirstAcceptanceRow } from "./FirstAcceptanceRow";
import {
calcUserTotalResult,
compareTotalResult,
ReducedProblemResult,
UserTotalResult,
} from "./ResultCalcUtil";
import { compareProblem, getResultsByUserMap } from "./util";
interface Props {
readonly contestId: string;
readonly contestTitle: string;
readonly showRating: boolean;
readonly showProblems: boolean;
readonly problems: VirtualContestProblem[];
readonly enableEstimatedPerformances: boolean;
readonly users: string[];
readonly start: number;
readonly end: number;
readonly enableAutoRefresh: boolean;
readonly atCoderUserId: string;
readonly pinMe: boolean;
readonly penaltySecond: number;
}
const getPerformanceByUserId = (
lookForUserId: string,
sortedUserIds: UserId[],
performanceMap: Map<UserId, number>
) => {
const index = sortedUserIds.indexOf(lookForUserId);
if (index < 0) {
return undefined;
}
let upper: number | undefined;
for (let i = index; i < sortedUserIds.length; i++) {
const userId = sortedUserIds[i];
const performance = performanceMap.get(userId);
if (performance !== undefined) {
upper = performance;
break;
}
}
let lower: number | undefined;
for (let i = index; i >= 0; i--) {
const userId = sortedUserIds[i];
const performance = performanceMap.get(userId);
if (performance !== undefined) {
lower = performance;
break;
}
}
if (lower !== undefined && upper !== undefined) {
return (lower + upper) / 2;
} else if (lower !== undefined) {
return lower;
} else if (upper !== undefined) {
return upper;
} else {
return undefined;
}
};
export const constructPointOverrideMap = <
T extends { item: VirtualContestItem }
>(
problems: T[]
) => {
const pointOverrideMap = new Map<ProblemId, number>();
problems.forEach(({ item }) => {
const problemId = item.id;
const point = item.point;
if (point !== null) {
pointOverrideMap.set(problemId, point);
}
});
return pointOverrideMap;
};
const consolidateModels = (
problems: VirtualContestProblem[],
problemMap?: Map<ProblemId, MergedProblem>,
problemModels?: Map<ProblemId, ProblemModel>
) => {
const modelArray = [] as {
problemModel: ProblemModelWithDifficultyModel & ProblemModelWithTimeModel;
problemId: string;
point: number;
}[];
problems.forEach(({ item }) => {
const problemId = item.id;
const point = item.point ?? problemMap?.get(problemId)?.point ?? 100;
const problemModel = problemModels?.get(problemId);
if (
isProblemModelWithTimeModel(problemModel) &&
isProblemModelWithDifficultyModel(problemModel)
) {
modelArray.push({ problemModel, problemId, point });
}
});
return modelArray;
};
export const ContestTable = (props: Props) => {
const {
contestId,
contestTitle,
showRating,
showProblems,
problems,
users,
start,
end,
atCoderUserId,
pinMe,
penaltySecond,
} = props;
const query = new URLSearchParams(useLocation().search);
const showBots = !!query.get("bot");
const problemModels = useProblemModelMap();
const { data: problemMap } = useMergedProblemMap();
const submissions = useVirtualContestSubmissions(
props.users,
problems.map((p) => p.item.id),
start,
end,
props.enableAutoRefresh
);
if (submissions.error) {
return <Alert color="danger">Failed to fetch submissions.</Alert>;
}
if (!submissions.data) {
return <Spinner />;
}
const modelArray = consolidateModels(problems, problemMap, problemModels);
const pointOverrideMap = constructPointOverrideMap(problems);
const resultsByUser = getResultsByUserMap(
submissions.data,
users,
(problemId) => pointOverrideMap.get(problemId)
);
const now = getCurrentUnixtimeInSecond();
const showEstimatedPerformances =
props.enableEstimatedPerformances &&
modelArray.length === problems.length &&
now >= start;
const botRunnerIds = new Set<UserId>();
const ratingMap = new Map<UserId, number>();
if (showEstimatedPerformances) {
const runners = makeBotRunners(modelArray, start, end);
for (let i = 0; i < runners.length; i++) {
const { rating, result } = runners[i];
const userId = `Bot: ${clipDifficulty(rating)}`;
botRunnerIds.add(userId);
resultsByUser.set(userId, result);
ratingMap.set(userId, rating);
}
}
const totalResultByUser = new Map<UserId, UserTotalResult>();
resultsByUser.forEach((map, userId) => {
const totalResult = calcUserTotalResult(map);
totalResultByUser.set(userId, totalResult);
});
const sortedUserIds = Array.from(totalResultByUser)
.sort(([aId, aResult], [bId, bResult]) => {
const c = compareTotalResult(aResult, bResult, penaltySecond);
return c !== 0 ? c : aId.localeCompare(bId);
})
.map(([userId]) => userId);
const performanceMap = new Map<UserId, number>();
if (showEstimatedPerformances) {
const participantsRawRatings = [] as number[];
const userIds = [] as string[];
sortedUserIds.forEach((userId) => {
const rating = ratingMap.get(userId);
if (rating !== undefined) {
participantsRawRatings.push(rating);
userIds.push(userId);
}
});
const performances = calculatePerformances(participantsRawRatings);
for (let i = 0; i < performances.length; i++) {
const performance = performances[i];
const userId = userIds[i];
performanceMap.set(userId, performance);
}
}
const showingUserIds = sortedUserIds.filter(
(userId) => !botRunnerIds.has(userId) || showBots
);
const loginUserIndex = showingUserIds.findIndex(
(userId) => userId === atCoderUserId
);
const sortedItems = problems
.map((p) => ({
contestId: p.contestId,
title: p.title,
...p.item,
}))
.sort(compareProblem);
const loginUserRank = loginUserIndex + 1;
const tweetButton = end < now && (
<TweetButton
id={contestId}
text={`${atCoderUserId} took ${loginUserRank}${ordinalSuffixOf(
loginUserRank
)} place in ${contestTitle}!`}
color="link"
>
Share it!
</TweetButton>
);
return (
<Table striped bordered size="sm">
<thead>
<tr className="text-center">
<th>#</th>
<th>Participant</th>
<th>Score</th>
{showProblems &&
sortedItems.map((p, i) => (
<th key={i}>
{p.contestId && p.title ? (
<ProblemLink
showDifficultyMode={ShowDifficultyMode.None}
problemId={p.id}
contestId={p.contestId}
problemName={`${i + 1}`}
/>
) : (
i + 1
)}
</th>
))}
{showEstimatedPerformances && <th>Estimated Performance</th>}
</tr>
</thead>
<tbody>
{pinMe && loginUserIndex >= 0 ? (
<ContestTableRow
tweetButton={tweetButton}
userId={atCoderUserId}
rank={loginUserIndex}
sortedItems={sortedItems}
showRating={showRating}
showProblems={showProblems}
start={start}
estimatedPerformance={getPerformanceByUserId(
atCoderUserId,
sortedUserIds,
performanceMap
)}
reducedProblemResults={
resultsByUser.get(atCoderUserId) ??
new Map<ProblemId, ReducedProblemResult>()
}
userTotalResult={totalResultByUser.get(atCoderUserId)}
penaltySecond={penaltySecond}
/>
) : null}
{showingUserIds.map((userId, i) => {
return (
<ContestTableRow
tweetButton={atCoderUserId === userId && tweetButton}
key={userId}
userId={userId}
rank={i}
sortedItems={sortedItems}
showRating={showRating}
showProblems={showProblems}
start={start}
estimatedPerformance={getPerformanceByUserId(
userId,
sortedUserIds,
performanceMap
)}
reducedProblemResults={
resultsByUser.get(userId) ??
new Map<ProblemId, ReducedProblemResult>()
}
userTotalResult={totalResultByUser.get(userId)}
penaltySecond={penaltySecond}
/>
);
})}
{showProblems && (
<FirstAcceptanceRow
start={start}
userIds={users}
problemIds={sortedItems.map((item) => item.id)}
resultsByUser={resultsByUser}
showRating={showRating}
/>
)}
</tbody>
</Table>
);
};