PEUCS: Utility Co-occurrence Structure
- PEUCS is a pairwise aggregation structure that compactly stores a 5-tuple of utility and periodicity statistics for item pairs.
- It combines positive and negative utilities while recording modified transaction-weighted utility, periodic gaps, and support to aid effective pruning.
- PEUCS underpins the PCUD strategy within the TPU algorithm, enabling aggressive threshold raising and reducing the cost of subsequent utility-list joins.
Searching arXiv for the specified paper and closely related periodic high-utility pattern mining work. Period-estimated Utility Co-occurrence Structure (PEUCS) is a pairwise aggregation structure introduced in "Discovering Top-k Periodic and High-Utility Patterns" for top- periodic high-utility pattern mining under positive and negative utilities (Zhou et al., 19 Sep 2025). In that setting, PEUCS is used alongside positive and negative utility lists (PNUL) to store 2-item co-occurrence information needed for threshold raising and pruning. For each ordered pair , it records redefined transaction-weighted utility, pairwise utility, periodicity bounds, and support in a compact 5-tuple. Within the TPU algorithm, PEUCS serves as the basis for the periodic co-occurrence utility descending (PCUD) threshold-raising strategy, and more broadly supports efficient discovery of the most significant top- periodic and high-utility patterns, including cases with negative utility values (Zhou et al., 19 Sep 2025).
1. Formal definition
Let be the set of all items, and let be a transaction database in which each transaction has identifier and contains a subset of . Each item carries an internal utility and an external utility 0. The utility of an item in a transaction is defined as
1
and for an item pair 2 appearing in 3,
4
The redefined transaction utility for a transaction is
5
and the redefined transaction-weighted utility for a pair is
6
If 7 denotes the multiset of adjacent-tid differences between consecutive transactions containing both 8 and 9, with 0 and 1, then the associated periodic statistics are:
2
3
4
Over all transactions, the global pair utility is
5
PEUCS is then defined as follows: for each ordered pair 6, the entry 7 is the 5-tuple
8
This definition situates PEUCS as a pair-level summary structure rather than a list-based vertical representation. It is designed to capture utility and periodicity simultaneously, allowing subsequent threshold raising to be performed directly from precomputed pair statistics.
2. Internal layout and stored quantities
PEUCS is described as a global, in-memory, symmetric matrix in which only entries with 9 are stored (Zhou et al., 19 Sep 2025). Each such entry aggregates, over all transactions in one pass, the following quantities:
| Component | Meaning |
|---|---|
| 0 | Sum of 1 over all transactions containing 2 |
| 3 | Sum of 4 over all transactions containing the pair |
| 5 | Support count of the pair |
| 6 | Minimum periodic gap, computed on-the-fly |
| 7 | Maximum periodic gap, computed on-the-fly |
The structure is paired with PNUL, the Positive/Negative Utility List. For any itemset 8, PNUL stores tuples of the form 9, where 0 is the positive utility of 1 in the transaction, 2 is the negative utility of 3 in the transaction, and 4 is the remaining positive utility of items 5 in that transaction (Zhou et al., 19 Sep 2025). PNUL is used to build higher-order utility lists, whereas PEUCS stores 2-item aggregate information.
A notable design choice is that positive and negative utilities are folded into 6, while 7 always uses only positive-part sums (Zhou et al., 19 Sep 2025). This division allows PEUCS to accommodate negative utility values without altering the upper-bound behavior of 8.
This layout suggests that PEUCS is intended not as a general-purpose itemset repository, but as a specialized pairwise synopsis optimized for rapid threshold adjustment before or during deeper search.
3. Construction from the transaction database
PEUCS is built by a single scan of the database (Zhou et al., 19 Sep 2025). In a transaction 9 with identifier 0, let
1
be the items of 2 sorted by the chosen total order. For every pair of positions 3, the algorithm considers 4 and updates the corresponding entry.
If no entry exists, it is initialized with:
- 5
- 6
- 7
- 8
- 9
- 0
The updates are then:
- 1
- 2
- 3
If 4, then:
- if 5, set 6
- set 7
Otherwise, for the first occurrence:
- set 8
Finally:
- 9
- 0
The paper provides the following pseudocode for buildPEUCS (Zhou et al., 19 Sep 2025):
53
Because construction is pairwise within each transaction, the structure is sensitive to transaction length rather than only database size. That property is reflected directly in the complexity bounds reported for PEUCS.
4. Function within threshold-raising strategies
PEUCS is integrated into the TPU algorithm through three threshold-raising strategies: periodic real item utility (PIU), periodic co-occurrence utility descending (PCUD), and periodic real utility (PRU) (Zhou et al., 19 Sep 2025). Of these, PEUCS is directly central to PCUD.
PIU operates after the first scan, when for each single item 1 one knows its total utility 2 and its periodic measures 3. The set
4
is sorted descending, and if 5, with 6 the desired number of patterns, then 7 is set to the 8-th largest value:
9
This strategy does not require PEUCS, but establishes an initial threshold that conditions later pair filtering.
PCUD is the PEUCS-driven stage. Once PEUCS is built, all pairs 0 are collected for which 1 and the pair satisfies periodic constraints jointly. For each such pair, its utility 2 is recorded. If
3
is sorted descending and 4, with 5 the 6-th largest value, then
7
Because PEUCS already provides 8 for every pair, this lookup is reported as 9 where 0 after single-item pruning (Zhou et al., 19 Sep 2025). The paper explicitly notes that, in practice, PEUCS allows PCUD to be computed in one pass over 1 entries instead of repeatedly joining utility lists.
PRU is used during the depth-first search. A min-heap of size at most 2 stores discovered periodic high-utility itemsets by true utility 3. Once 4 patterns are in the heap, letting 5 be the smallest utility currently present, the threshold is raised dynamically by
6
The significance of PEUCS lies in its role as the bridge between single-item prefiltering and deeper itemset search. It provides sufficient 2-item utility and periodicity information to make a substantial threshold adjustment before more expensive utility-list joins dominate execution.
5. Complexity and empirical effects
The analytical cost of building PEUCS is
7
which is 8 when 9 and the average transaction length is 00 (Zhou et al., 19 Sep 2025). Its space complexity is 01 for storing pair entries, where 02 is the number of items after single-item pruning. Computing PCUD from PEUCS is 03 time with 04 extra space, while PIU is 05 (Zhou et al., 19 Sep 2025).
During the depth-first search, the usual utility-list joins remain dominant. The paper states that pruning by RTWU, RU, and maxPer/avgPer reduces the number of constructed lists; in the worst case the search can still be exponential in 06, but raised 07 and periodicity pruning reduce the search dramatically in practice (Zhou et al., 19 Sep 2025).
The experimental results reported for the threshold-raising strategies associated with PEUCS are specific. On six real datasets with negative profits, introducing PCUD and PRU on top of PIU reduced overall runtime by about 5% on average (Zhou et al., 19 Sep 2025). On dense datasets with many positive co-occurrences, namely mushroom_negative and kosarak_negative, runtime fell by up to 50%, and for chess_negative by about 10% (Zhou et al., 19 Sep 2025). Memory usage fell by about 2% overall, with a peak gain of 30% on mushroom_negative, which the paper attributes to fewer candidate utility lists being kept in memory (Zhou et al., 19 Sep 2025).
These results indicate that the principal value of PEUCS is not asymptotic improvement of the full search problem, but earlier and more aggressive threshold raising that lowers the practical cost of subsequent exploration.
6. Running example and interpretive significance
The paper presents a toy database of ten transactions with transaction identifiers 08 through 09 over items 10, with external utilities given in the paper and periodicity thresholds
11
In the first scan, single-item utilities are computed and PIU is applied. The retained positive-utility items are:
- 12
- 13
- 14
- 15
Items 16 are negative and discarded at that stage. Sorting 17 gives a 3rd largest value of 18, so the first threshold becomes
19
In the rescan, PEUCS is built. For transaction 20 with 21, items 22 produce pairs such as:
- 23: 24, 25, 26, 27
- 28: 29, 30
After all ten transactions, the paper reports example PEUCS entries from Table 7:
- 31
- 32
- 33 (Zhou et al., 19 Sep 2025)
PCUD then keeps pairs with 34 and satisfying 35. Their utility values, sorted, include:
- 36
- 37
- 38
The 3rd largest is 39, yielding
40
During the subsequent depth-first search, the first periodic high-utility itemsets found include 41, 42, and 43. Once these three fill the top-44 heap, the smallest utility among them is 45, so
46
and any partial candidate whose 47, or 48, or 49 is pruned immediately (Zhou et al., 19 Sep 2025). The final top-3 patterns are 50, 51, and 52.
A plausible implication is that the example is structured to show PEUCS as an intermediate representation that materially sharpens the threshold before recursive search begins in earnest. The paper’s summary makes this interpretation explicit: PEUCS provides a compact, one-pass aggregation of all 2-item co-occurrences’ positive and negative utilities together with full periodicity statistics, and this precomputed structure underlies PCUD while reducing the number of utility-list joins in the subsequent search (Zhou et al., 19 Sep 2025).