中文
相关论文

相关论文: Online Companion Caching

200 篇论文

Motivated by the desire to utilize a limited number of configurable optical switches by recent advances in Software Defined Networks (SDNs), we define an online problem which we call the Caching in Matchings problem. This problem has a…

数据结构与算法 · 计算机科学 2024-02-26 Yaniv Sadeh , Haim Kaplan

We consider a variant of the online caching problem where the items exhibit dependencies among each other: an item can reside in the cache only if all its dependent items are also in the cache. The dependency relations can form any directed…

数据结构与算法 · 计算机科学 2024-01-31 Julien Dallot , Amirmehdi Jafari Fesharaki , Maciej Pacut , Stefan Schmid

Online caching is among the most fundamental and well-studied problems in the area of online algorithms. Innovative algorithmic ideas and analysis -- including potential functions and primal-dual techniques -- give insight into this…

数据结构与算法 · 计算机科学 2023-05-05 Sharat Ibrahimpur , Manish Purohit , Zoya Svitkina , Erik Vee , Joshua R. Wang

We initiate the study of a natural and practically relevant new variant of online caching where the to-be-cached items can have dependencies. We assume that the universe is a tree T and items are tree nodes; we require that if a node v is…

数据结构与算法 · 计算机科学 2017-05-16 Marcin Bienkowski , Jan Marcinkowski , Maciej Pacut , Stefan Schmid , Aleksandra Spyra

The paging problem is that of deciding which pages to keep in a memory of k pages in order to minimize the number of page faults. This paper introduces the marking algorithm, a simple randomized on-line algorithm for the paging problem, and…

数据结构与算法 · 计算机科学 2015-06-02 Amos Fiat , Richard Karp , Mike Luby , Lyle McGeoch , Daniel Sleator , Neal E. Young

In the model of online caching with machine learned advice, introduced by Lykouris and Vassilvitskii, the goal is to solve the caching problem with an online algorithm that has access to next-arrival predictions: when each input element…

数据结构与算法 · 计算机科学 2019-10-31 Dhruv Rohatgi

We consider the online bipartite matching problem on $(k,d)$-bounded graphs, where each online vertex has at most $d$ neighbors, each offline vertex has at least $k$ neighbors, and $k\geq d\geq 2$. The model of $(k,d)$-bounded graphs is…

数据结构与算法 · 计算机科学 2023-12-05 Yilong Feng , Xiaowei Wu , Shengwei Zhou

We consider the online $k$-median clustering problem in which $n$ points arrive online and must be irrevocably assigned to a cluster on arrival. As there are lower bound instances that show that an online algorithm cannot achieve a…

数据结构与算法 · 计算机科学 2023-03-28 Benjamin Moseley , Heather Newman , Kirk Pruhs

Caching is a crucial component of many computer systems, so naturally it is a well-studied topic in algorithm design. Much of traditional caching research studies cache management for a single-user or single-processor environment. In this…

数据结构与算法 · 计算机科学 2022-07-14 Sharat Ibrahimpur , Manish Purohit , Zoya Svitkina , Erik Vee , Joshua Wang

We give the first polylogarithmic-competitive randomized online algorithm for the $k$-server problem on an arbitrary finite metric space. In particular, our algorithm achieves a competitive ratio of O(log^3 n log^2 k log log n) for any…

数据结构与算法 · 计算机科学 2011-10-10 Nikhil Bansal , Niv Buchbinder , Aleksander Madry , Joseph , Naor

In an $\alpha$-way set-associative cache, the cache is partitioned into disjoint sets of size $\alpha$, and each item can only be cached in one set, typically selected via a hash function. Set-associative caches are widely used and have…

数据结构与算法 · 计算机科学 2023-04-12 Michael A. Bender , Rathish Das , Martín Farach-Colton , Guido Tagliavini

In the online hypergraph matching problem, hyperedges of size $k$ over a common ground set arrive online in adversarial order. The goal is to obtain a maximum matching (disjoint set of hyperedges). A na\"ive greedy algorithm for this…

数据结构与算法 · 计算机科学 2024-02-15 Thorben Tröbst , Rajan Udwani

The knapsack problem is one of the classical problems in combinatorial optimization: Given a set of items, each specified by its size and profit, the goal is to find a maximum profit packing into a knapsack of bounded capacity. In the…

数据结构与算法 · 计算机科学 2020-12-02 Susanne Albers , Arindam Khan , Leon Ladewig

This paper combines two key ingredients for online algorithms - competitive analysis (e.g. the competitive ratio) and advice complexity (e.g. the number of advice bits needed to improve online decisions) - in the context of a simple online…

计算机科学与博弈论 · 计算机科学 2020-06-30 Martin Aleksandrov , Toby Walsh

In the online multiple knapsack problem, an algorithm faces a stream of items, and each item has to be either rejected or stored irrevocably in one of $n$ bins (knapsacks) of equal size. The gain of an~algorithm is equal to the sum of sizes…

数据结构与算法 · 计算机科学 2020-04-29 Marcin Bienkowski , Maciej Pacut , Krzysztof Piecuch

In this paper, we study a very general type of online network design problem, and generalize two different previous algorithms, one for an online network design problem due to Berman and Coulston [4] and one for (offline) general network…

数据结构与算法 · 计算机科学 2017-02-17 Jiawei Qian , Seeun William Umboh , David P. Williamson

In the on-line file-caching problem problem, the input is a sequence of requests for files, given on-line (one at a time). Each file has a non-negative size and a non-negative retrieval cost. The problem is to decide which files to keep in…

数据结构与算法 · 计算机科学 2015-06-02 Neal E. Young

In this paper, we show that there is an O(log k log^2 n)-competitive randomized algorithm for the k-sever problem on any metric space with n points, which improved the previous best competitive ratio O(log^2 k log^3 n log log n) by Nikhil…

数据结构与算法 · 计算机科学 2015-10-28 Wenbin Chen

We consider the online stochastic matching problem proposed by Feldman et al. [FMMM09] as a model of display ad allocation. We are given a bipartite graph; one side of the graph corresponds to a fixed set of bins and the other side…

数据结构与算法 · 计算机科学 2011-08-03 Vahideh H. Manshadi , Shayan Oveis Gharan , Amin Saberi

Consider the problem: we are given $n$ boxes, labeled $\{1,2,\ldots, n\}$ by an adversary, each containing a single number chosen from an unknown distribution; these $n$ distributions are not necessarily identical. We are also given an…

数据结构与算法 · 计算机科学 2024-05-13 Mohammad Taghi Hajiaghayi , Dariusz R. Kowalski , Piotr Krysta , Jan Olkowski
‹ 上一页 1 2 3 10 下一页 ›