This repository was archived by the owner on Feb 28, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathMasterBib.bib
More file actions
5244 lines (4601 loc) · 181 KB
/
Copy pathMasterBib.bib
File metadata and controls
5244 lines (4601 loc) · 181 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
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@inproceedings{Knaster46,
title={Sur le probleme du partage pragmatique de H. Steinhaus},
author={Knaster, Bronislaw},
booktitle={Annales de la Societ{\'e} Polonaise de Mathematique},
volume={19},
pages={228--230},
year={1946}
}
@inproceedings{SpielmanT04,
title={Nearly-linear time algorithms for graph partitioning, graph sparsification, and solving linear systems},
author={Spielman, Daniel A and Teng, Shang-Hua},
booktitle={Proceedings of the thirty-sixth annual ACM symposium on Theory of computing},
pages={81--90},
year={2004},
organization={ACM}
}
@inproceedings{HartlineL10,
author = {Jason D. Hartline and
Brendan Lucier},
title = {Bayesian algorithmic mechanism design},
booktitle = {Proceedings of the 42nd {ACM} Symposium on Theory of Computing, {STOC}
2010, Cambridge, Massachusetts, USA, 5-8 June 2010},
pages = {301--310},
year = {2010},
crossref = {DBLP:conf/stoc/2010},
url = {http://doi.acm.org/10.1145/1806689.1806732},
doi = {10.1145/1806689.1806732},
timestamp = {Fri, 12 Oct 2012 12:16:22 +0200},
biburl = {https://dblp.org/rec/bib/conf/stoc/HartlineL10},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@inproceedings{FeldmanFR18,
author = {Michal Feldman and
Ophir Friedler and
Aviad Rubinstein},
title = {99{\%} Revenue via Enhanced Competition},
booktitle = {Proceedings of the 2018 {ACM} Conference on Economics and Computation,
Ithaca, NY, USA, June 18-22, 2018},
pages = {443--460},
year = {2018},
crossref = {DBLP:conf/sigecom/2018},
url = {http://doi.acm.org/10.1145/3219166.3219202},
doi = {10.1145/3219166.3219202},
timestamp = {Tue, 19 Jun 2018 08:48:43 +0200},
biburl = {https://dblp.org/rec/bib/conf/sigecom/FeldmanFR18},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@article{KalyanasundaramP00,
author = {Bala Kalyanasundaram and
Kirk Pruhs},
title = {Speed is as powerful as clairvoyance},
journal = {J. {ACM}},
volume = {47},
number = {4},
pages = {617--643},
year = {2000},
url = {http://doi.acm.org/10.1145/347476.347479},
doi = {10.1145/347476.347479},
timestamp = {Thu, 20 Nov 2003 12:28:13 +0100},
biburl = {https://dblp.org/rec/bib/journals/jacm/KalyanasundaramP00},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@article{RoughgardenT02,
author = {Tim Roughgarden and
{\'{E}}va Tardos},
title = {How bad is selfish routing?},
journal = {J. {ACM}},
volume = {49},
number = {2},
pages = {236--259},
year = {2002},
url = {http://doi.acm.org/10.1145/506147.506153},
doi = {10.1145/506147.506153},
timestamp = {Thu, 20 Nov 2003 12:28:21 +0100},
biburl = {https://dblp.org/rec/bib/journals/jacm/RoughgardenT02},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@article{Mitchell99,
author = {Joseph S. B. Mitchell},
title = {Guillotine Subdivisions Approximate Polygonal Subdivisions: {A} Simple
Polynomial-Time Approximation Scheme for Geometric TSP, k-MST, and
Related Problems},
journal = {{SIAM} J. Comput.},
volume = {28},
number = {4},
pages = {1298--1309},
year = {1999},
url = {https://doi.org/10.1137/S0097539796309764},
doi = {10.1137/S0097539796309764},
timestamp = {Sat, 27 May 2017 14:22:58 +0200},
biburl = {https://dblp.org/rec/bib/journals/siamcomp/Mitchell99},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@article{SleatorT85,
author = {Daniel Dominic Sleator and
Robert Endre Tarjan},
title = {Amortized Efficiency of List Update and Paging Rules},
journal = {Commun. {ACM}},
volume = {28},
number = {2},
pages = {202--208},
year = {1985},
url = {http://doi.acm.org/10.1145/2786.2793},
doi = {10.1145/2786.2793},
timestamp = {Tue, 07 Jun 2011 16:51:41 +0200},
biburl = {https://dblp.org/rec/bib/journals/cacm/SleatorT85},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@article{Arora98,
author = {Sanjeev Arora},
title = {Polynomial Time Approximation Schemes for Euclidean Traveling Salesman
and other Geometric Problems},
journal = {J. {ACM}},
volume = {45},
number = {5},
pages = {753--782},
year = {1998},
url = {http://doi.acm.org/10.1145/290179.290180},
doi = {10.1145/290179.290180},
timestamp = {Thu, 20 Nov 2003 12:28:00 +0100},
biburl = {https://dblp.org/rec/bib/journals/jacm/Arora98},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@article{VegaL81,
author = {Wenceslas Fernandez de la Vega and
George S. Lueker},
title = {Bin packing can be solved within 1+epsilon in linear time},
journal = {Combinatorica},
volume = {1},
number = {4},
pages = {349--355},
year = {1981},
url = {https://doi.org/10.1007/BF02579456},
doi = {10.1007/BF02579456},
timestamp = {Thu, 18 May 2017 09:53:26 +0200},
biburl = {https://dblp.org/rec/bib/journals/combinatorica/VegaL81},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@article{SpielmanT09,
title={Smoothed analysis: an attempt to explain the behavior of algorithms in practice},
author={Spielman, Daniel A and Teng, Shang-Hua},
journal={Communications of the ACM},
volume={52},
number={10},
pages={76--84},
year={2009},
publisher={ACM}
}
@article{IbarraK75,
author = {Oscar H. Ibarra and
Chul E. Kim},
title = {Fast Approximation Algorithms for the Knapsack and Sum of Subset Problems},
journal = {J. {ACM}},
volume = {22},
number = {4},
pages = {463--468},
year = {1975},
url = {http://doi.acm.org/10.1145/321906.321909},
doi = {10.1145/321906.321909},
timestamp = {Thu, 26 Jan 2012 17:31:32 +0100},
biburl = {https://dblp.org/rec/bib/journals/jacm/IbarraK75},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@Inbook{KolliopoulosS98,
author="Kolliopoulos, Stavros G.
and Stein, Clifford",
editor="Bixby, Robert E.
and Boyd, E. Andrew
and R{\'i}os-Mercado, Roger Z.",
title="Approximating Disjoint-Path Problems Using Greedy Algorithms and Packing Integer Programs",
bookTitle="Integer Programming and Combinatorial Optimization: 6th International IPCO Conference Houston, Texas, June 22--24, 1998 Proceedings",
year="1998",
publisher="Springer Berlin Heidelberg",
address="Berlin, Heidelberg",
pages="153--168",
isbn="978-3-540-69346-8",
doi="10.1007/3-540-69346-7_12",
url="http://dx.doi.org/10.1007/3-540-69346-7_12"
}
@inproceedings{BriestKV05,
Author = {Patrick Briest and Piotr Krysta and Berthold V{\"o}cking},
Booktitle = {the 37th Annual ACM Symposium on Theory of Computing (STOC)},
Title = {Approximation techniques for utilitarian mechanism design},
Year = {2005}}
@inproceedings{Rubinstein16,
title = {Settling the Complexity of computing approximate two-player Nash Equillibria},
author = {Aviad Rubinstein},
year = {2016},
booktitle = {FOCS}
}
@article{Raghavan88,
author = {Raghavan, Prabhakar},
title = {Probabilistic Construction of Deterministic Algorithms: Approximating Packing Integer Programs},
journal = {J. Comput. Syst. Sci.},
issue_date = {October 1988},
volume = {37},
number = {2},
month = oct,
year = {1988},
issn = {0022-0000},
pages = {130--143},
numpages = {14},
url = {http://dx.doi.org/10.1016/0022-0000(88)90003-7},
doi = {10.1016/0022-0000(88)90003-7},
acmid = {53815},
publisher = {Academic Press, Inc.},
address = {Orlando, FL, USA},
}
@inproceedings{DobzinskiN07,
Author = {Shahar Dobzinski and Noam Nisan},
Booktitle = {the 8th ACM Conference on Electronic Commerce (EC)},
Title = {Mechanisms for Multi-Unit Auctions},
Year = {2007}}
@inproceedings{DobzinskiV12a,
Author = {Shahar Dobzinski and Jan Vondrak},
Booktitle = {Proceedings of the ACM Conference on Electronic Commerce (EC)},
Title = {{The Computational Complexity of Truthfulness in Combinatorial Auctions}},
Year = {2012}}
@inproceedings{MirrokniSV08,
author = {Vahab S. Mirrokni and
Michael Schapira and
Jan Vondr{\'{a}}k},
title = {Tight information-theoretic lower bounds for welfare maximization
in combinatorial auctions},
booktitle = {Proceedings 9th {ACM} Conference on Electronic Commerce (EC-2008),
Chicago, IL, USA, June 8-12, 2008},
pages = {70--77},
year = {2008},
crossref = {DBLP:conf/sigecom/2008},
url = {http://doi.acm.org/10.1145/1386790.1386805},
doi = {10.1145/1386790.1386805},
timestamp = {Mon, 24 Feb 2014 16:09:47 +0100},
biburl = {http://dblp.uni-trier.de/rec/bib/conf/sigecom/MirrokniSV08},
bibsource = {dblp computer science bibliography, http://dblp.org}
}
@INPROCEEDINGS{FeigeV06,
author = {Uriel Feige and Jan Vondrak},
title = {The allocation problem with submodular utility functions},
booktitle = {In Proc. of the 47th Annual IEEE Symposium on Foundations of Computer Science (FOCS},
year = {2006}
}
@inproceedings{Yao:1979:CQR:800135.804414,
author = {Yao, Andrew Chi-Chih},
title = {Some Complexity Questions Related to Distributive Computing(Preliminary Report)},
booktitle = {Proceedings of the Eleventh Annual ACM Symposium on Theory of Computing},
series = {STOC '79},
year = {1979},
location = {Atlanta, Georgia, USA},
pages = {209--213},
numpages = {5},
url = {http://doi.acm.org/10.1145/800135.804414},
doi = {10.1145/800135.804414},
acmid = {804414},
publisher = {ACM},
address = {New York, NY, USA},
}
@article{Nisan:1993:RCC:152322.152386,
author = {Nisan, Noam and Wigderson, Avi},
title = {Rounds in Communication Complexity Revisited},
journal = {SIAM J. Comput.},
issue_date = {Feb. 1993},
volume = {22},
number = {1},
month = feb,
year = {1993},
issn = {0097-5397},
pages = {211--219},
numpages = {9},
url = {http://dx.doi.org/10.1137/0222016},
doi = {10.1137/0222016},
acmid = {152386},
publisher = {Society for Industrial and Applied Mathematics},
address = {Philadelphia, PA, USA},
keywords = {communication complexity, information, monotone circuits, rounds},
}
@inproceedings{Papadimitriou:1982:CC:800070.802192,
author = {Papadimitriou, Christos H. and Sipser, Michael},
title = {Communication Complexity},
booktitle = {Proceedings of the Fourteenth Annual ACM Symposium on Theory of Computing},
series = {STOC '82},
year = {1982},
isbn = {0-89791-070-2},
location = {San Francisco, California, USA},
pages = {196--200},
numpages = {5},
url = {http://doi.acm.org/10.1145/800070.802192},
doi = {10.1145/800070.802192},
acmid = {802192},
publisher = {ACM},
address = {New York, NY, USA},
}
@inproceedings{Duris:1984:LBC:800057.808668,
author = {Duris, Pavol and Galil, Zvi and Schnitger, Georg},
title = {Lower Bounds on Communication Complexity},
booktitle = {Proceedings of the Sixteenth Annual ACM Symposium on Theory of Computing},
series = {STOC '84},
year = {1984},
isbn = {0-89791-133-4},
pages = {81--91},
numpages = {11},
url = {http://doi.acm.org/10.1145/800057.808668},
doi = {10.1145/800057.808668},
acmid = {808668},
publisher = {ACM},
address = {New York, NY, USA},
}
@inproceedings{DobzinskiNO14,
Author = {Shahar Dobzinski and Noam Nisan and Sigal Oren},
Booktitle = {the 46th annual ACM symposium on Theory of computing (STOC)},
Title = {Economic Efficiency Requires Interaction},
Year = {2014}}
@article{BabaiGKL03,
author = {L{\'{a}}szl{\'{o}} Babai and
Anna G{\'{a}}l and
Peter G. Kimmel and
Satyanarayana V. Lokam},
title = {Communication Complexity of Simultaneous Messages},
journal = {{SIAM} J. Comput.},
volume = {33},
number = {1},
pages = {137--166},
year = {2003},
url = {http://dx.doi.org/10.1137/S0097539700375944},
doi = {10.1137/S0097539700375944},
timestamp = {Mon, 12 Sep 2011 16:10:10 +0200},
biburl = {http://dblp.uni-trier.de/rec/bib/journals/siamcomp/BabaiGKL03},
bibsource = {dblp computer science bibliography, http://dblp.org}
}
@inproceedings{Feige06,
author = {Feige, Uriel},
title = {On Maximizing Welfare when Utility Functions Are Subadditive},
booktitle = {Proceedings of the Thirty-eighth Annual ACM Symposium on Theory of Computing},
series = {STOC '06},
year = {2006},
isbn = {1-59593-134-1},
location = {Seattle, WA, USA},
pages = {41--50},
numpages = {10},
url = {http://doi.acm.org/10.1145/1132516.1132523},
doi = {10.1145/1132516.1132523},
acmid = {1132523},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {combinatorial auctions, randomized rounding},
}
@inproceedings{DobzinskiS06,
author = {Dobzinski, Shahar and Schapira, Michael},
title = {An Improved Approximation Algorithm for Combinatorial Auctions with Submodular Bidders},
booktitle = {Proceedings of the Seventeenth Annual ACM-SIAM Symposium on Discrete Algorithm},
series = {SODA '06},
year = {2006},
isbn = {0-89871-605-5},
location = {Miami, Florida},
pages = {1064--1073},
numpages = {10},
url = {http://dl.acm.org/citation.cfm?id=1109557.1109675},
acmid = {1109675},
publisher = {Society for Industrial and Applied Mathematics},
address = {Philadelphia, PA, USA},
}
@inproceedings{Dobzinski07,
Author = {Dobzinski, Shahar},
Booktitle = {Proceedings of the 10th International Workshop on Approximation and the 11th International Workshop on Randomization, and Combinatorial Optimization. Algorithms and Techniques},
Pages = {89--103},
Title = {Two Randomized Mechanisms for Combinatorial Auctions},
Year = {2007}}
@inproceedings{Dobzinski16a,
author = {Dobzinski, Shahar},
title = {Breaking the Logarithmic Barrier for Truthful Combinatorial Auctions with Submodular Bidders},
booktitle = {Proceedings of the 48th Annual ACM SIGACT Symposium on Theory of Computing},
series = {STOC 2016},
year = {2016},
isbn = {978-1-4503-4132-5},
location = {Cambridge, MA, USA},
pages = {940--948},
numpages = {9},
url = {http://doi.acm.org/10.1145/2897518.2897569},
doi = {10.1145/2897518.2897569},
acmid = {2897569},
publisher = {ACM},
address = {New York, NY, USA},
keywords = {Approximation Algorithms, Auctions, Submodular Valuations},
}
@inproceedings{DobzinskiNS06,
Author = {Dobzinski, Shahar and Nisan, Noam and Schapira, Michael},
Booktitle = {Proceedings of the thirty-eighth annual ACM symposium on Theory of computing},
Organization = {ACM},
Pages = {644--652},
Title = {Truthful randomized mechanisms for combinatorial auctions},
Year = {2006}}
@incollection{KrystaV13,
Author = {Krysta, Piotr and V{\"o}cking, Berthold},
Booktitle = {Automata, Languages, and Programming},
Pages = {636--647},
Publisher = {Springer},
Title = {Online mechanism design (randomized rounding on the fly)},
Year = 2012}
@inproceedings{DobzinskiV12b,
Author = {Shahar Dobzinski and Jan Vondr{\'a}k},
Booktitle = {Proceedings of the 44th Symposium on Theory of Computing (STOC)},
Title = {From query complexity to computational complexity},
Year = {2012}}
@inproceedings{DughmiV11,
Author = {Shaddin Dughmi and Jan Vondrak},
Booktitle = {52nd Annual Symposium on Foundations of Computer Science (FOCS)},
Title = {{Limitations of Randomized Mechanisms for Combinatorial Auctions}},
Year = {2011}}
@inproceedings{Vondrak08,
author = {Jan Vondr{\'{a}}k},
title = {Optimal approximation for the submodular welfare problem in the value
oracle model},
booktitle = {Proceedings of the 40th Annual {ACM} Symposium on Theory of Computing,
Victoria, British Columbia, Canada, May 17-20, 2008},
pages = {67--74},
year = {2008},
crossref = {DBLP:conf/stoc/2008},
url = {http://doi.acm.org/10.1145/1374376.1374389},
doi = {10.1145/1374376.1374389},
timestamp = {Sat, 19 Jun 2010 14:44:24 +0200},
biburl = {http://dblp.uni-trier.de/rec/bib/conf/stoc/Vondrak08},
bibsource = {dblp computer science bibliography, http://dblp.org}
}
@inproceedings{LehmannLN01,
Author = {Benny Lehmann and Daniel Lehmann and Noam Nisan},
Booktitle = {the 3rd Annual ACM Conference on Electronic Commerce (EC)},
Title = {Combinatorial Auctions with Decreasing Marginal Utilities},
Year = {2001}}
@inproceedings{FeldmanGL14,
author = {Feldman, Michal and Gravin, Nick and Lucier, Brendan},
title = {Combinatorial Auctions via Posted Prices},
booktitle = {Proceedings of the Twenty-Sixth Annual ACM-SIAM Symposium on Discrete Algorithms},
series = {SODA '15},
year = {2015},
location = {San Diego, California},
pages = {123--135},
numpages = {13},
url = {http://dl.acm.org/citation.cfm?id=2722129.2722139},
acmid = {2722139},
publisher = {Society for Industrial and Applied Mathematics},
address = {Philadelphia, PA, USA},
}
@inproceedings{DughmiRY11,
Author = {Shaddin Dughmi and Tim Roughgarden and Qiqi Yan},
Booktitle = {Proceedings of the 43rd ACM Symposium on the Theory of Computing (STOC)},
Title = {From Convex Optimization to Randomized Mechanisms: Toward Optimal Combinatorial Auctions},
Year = {2011}}
@inproceedings{DughmiHN14,
author = {Shaddin Dughmi and
Li Han and
Noam Nisan},
title = {Sampling and Representation Complexity of Revenue Maximization},
booktitle = {Web and Internet Economics - 10th International Conference, {WINE}
2014, Beijing, China, December 14-17, 2014. Proceedings},
pages = {277--291},
year = {2014},
crossref = {DBLP:conf/wine/2014},
url = {http://dx.doi.org/10.1007/978-3-319-13129-0_22},
doi = {10.1007/978-3-319-13129-0_22},
timestamp = {Wed, 26 Nov 2014 14:31:47 +0100},
biburl = {http://dblp.uni-trier.de/rec/bib/conf/wine/DughmiHN14},
bibsource = {dblp computer science bibliography, http://dblp.org}
}
@article{ChenDT09,
author = {Xi Chen and
Xiaotie Deng and
Shang{-}Hua Teng},
title = {Settling the complexity of computing two-player Nash equilibria},
journal = {J. {ACM}},
volume = {56},
number = {3},
year = {2009},
url = {http://doi.acm.org/10.1145/1516512.1516516},
doi = {10.1145/1516512.1516516},
timestamp = {Wed, 20 May 2009 11:30:31 +0200},
biburl = {http://dblp.uni-trier.de/rec/bib/journals/jacm/ChenDT09},
bibsource = {dblp computer science bibliography, http://dblp.org}
}
@article{DaskalakisGP09,
author = {Constantinos Daskalakis and
Paul W. Goldberg and
Christos H. Papadimitriou},
title = {The Complexity of Computing a Nash Equilibrium},
journal = {{SIAM} J. Comput.},
volume = {39},
number = {1},
pages = {195--259},
year = {2009},
url = {http://dx.doi.org/10.1137/070699652},
doi = {10.1137/070699652},
timestamp = {Wed, 03 Feb 2010 09:05:39 +0100},
biburl = {http://dblp.uni-trier.de/rec/bib/journals/siamcomp/DaskalakisGP09},
bibsource = {dblp computer science bibliography, http://dblp.org}
}
@inproceedings{ChawlaM16,
author = {Shuchi Chawla and
J. Benjamin Miller},
title = {Mechanism Design for Subadditive Agents via an Ex Ante Relaxation},
booktitle = {Proceedings of the 2016 {ACM} Conference on Economics and Computation,
{EC} '16, Maastricht, The Netherlands, July 24-28, 2016},
pages = {579--596},
year = {2016},
crossref = {DBLP:conf/sigecom/2016},
url = {http://doi.acm.org/10.1145/2940716.2940756},
doi = {10.1145/2940716.2940756},
timestamp = {Fri, 22 Jul 2016 09:44:16 +0200},
biburl = {http://dblp.uni-trier.de/rec/bib/conf/sigecom/ChawlaM16},
bibsource = {dblp computer science bibliography, http://dblp.org}
}
@techreport{nayak2015stubborn,
title={Stubborn mining: Generalizing selfish mining and combining with an eclipse attack},
author={Nayak, Kartik and Kumar, Srijan and Miller, Andrew and Shi, Elaine},
year={2015},
institution={IACR Cryptology ePrint Archive 2015}
}
@misc{Nakamoto08,
title={Bitcoin: A peer-to-peer electronic cash system},
author={Nakamoto, Satoshi},
year={2008}
}
@inproceedings{KiayiasKKT16,
title = {Blockchain Mining Games},
author = {Aggelos Kiayias and Elias Koutsoupias and Maria Kyropoulou and Yiannis Tselekounis},
booktitle = {ACM Conference on Economics and Computation (EC)},
year = {2016}
}
@inproceedings{GarayKL15,
author = {Juan A. Garay and
Aggelos Kiayias and
Nikos Leonardos},
title = {The Bitcoin Backbone Protocol: Analysis and Applications},
booktitle = {Advances in Cryptology - {EUROCRYPT} 2015 - 34th Annual International
Conference on the Theory and Applications of Cryptographic Techniques,
Sofia, Bulgaria, April 26-30, 2015, Proceedings, Part {II}},
pages = {281--310},
year = {2015},
crossref = {DBLP:conf/eurocrypt/2015-2},
url = {http://dx.doi.org/10.1007/978-3-662-46803-6_10},
doi = {10.1007/978-3-662-46803-6_10},
timestamp = {Tue, 14 Apr 2015 13:59:22 +0200},
biburl = {http://dblp.uni-trier.de/rec/bib/conf/eurocrypt/GarayKL15},
bibsource = {dblp computer science bibliography, http://dblp.org}
}
@article{CourtoisB14,
author = {Nicolas T. Courtois and
Lear Bahack},
title = {On Subversive Miner Strategies and Block Withholding Attack in Bitcoin
Digital Currency},
journal = {CoRR},
volume = {abs/1402.1718},
year = {2014},
url = {http://arxiv.org/abs/1402.1718},
timestamp = {Wed, 05 Mar 2014 14:43:44 +0100},
biburl = {http://dblp.uni-trier.de/rec/bib/journals/corr/CourtoisB14},
bibsource = {dblp computer science bibliography, http://dblp.org}
}
@article{HartMC00,
authors = {Sergiu Hart and Andreu Mas-Colell},
title = {A simple adaptive procedure leading to correlated equilibrium},
journal = {Econometrica},
year = {2000},
volume = {68},
number = {5},
pages = {1127-1150}
}
@article{BlumM07,
author = {Avrim Blum and
Yishay Mansour},
title = {From External to Internal Regret},
journal = {Journal of Machine Learning Research},
volume = {8},
pages = {1307--1324},
year = {2007},
url = {http://dl.acm.org/citation.cfm?id=1314543},
timestamp = {Thu, 15 Dec 2011 15:52:06 +0100},
biburl = {http://dblp.uni-trier.de/rec/bib/journals/jmlr/BlumM07},
bibsource = {dblp computer science bibliography, http://dblp.org}
}
@article{FosterV97,
authors = {Dean P Foster and Rakesh V Vohra},
title = {Calibrated Learning and Correlated Equilibrium},
journal = {Games and Economic Behavior},
year = {1997},
volume = {21},
number = {1},
pages = {40-55}
}
Dean P Foster and Rakesh V Vohra. Calibrated learning and correlated equilibrium. Games and
Economic Behavior, 21(1):40–55, 1997.
@article{LittlestoneW94,
author = {Nick Littlestone and
Manfred K. Warmuth},
title = {The Weighted Majority Algorithm},
journal = {Inf. Comput.},
volume = {108},
number = {2},
pages = {212--261},
year = {1994},
url = {http://dx.doi.org/10.1006/inco.1994.1009},
doi = {10.1006/inco.1994.1009},
timestamp = {Wed, 06 Jul 2011 21:23:53 +0200},
biburl = {http://dblp.uni-trier.de/rec/bib/journals/iandc/LittlestoneW94},
bibsource = {dblp computer science bibliography, http://dblp.org}
}
@article{Rosenfeld11,
author = {Meni Rosenfeld},
title = {Analysis of Bitcoin Pooled Mining Reward Systems},
journal = {CoRR},
volume = {abs/1112.4980},
year = {2011},
url = {http://arxiv.org/abs/1112.4980},
timestamp = {Wed, 10 Oct 2012 21:28:45 +0200},
biburl = {http://dblp.uni-trier.de/rec/bib/journals/corr/abs-1112-4980},
bibsource = {dblp computer science bibliography, http://dblp.org}
}
@inproceedings{MoserB15,
author = {Malte M{\"{o}}ser and
Rainer B{\"{o}}hme},
title = {Trends, Tips, Tolls: {A} Longitudinal Study of Bitcoin Transaction
Fees},
booktitle = {Workshop on Bitcoin Research},
pages = {19--33},
year = {2015},
crossref = {DBLP:conf/fc/2015w},
url = {http://dx.doi.org/10.1007/978-3-662-48051-9_2},
doi = {10.1007/978-3-662-48051-9_2},
timestamp = {Sat, 05 Sep 2015 14:27:36 +0200},
biburl = {http://dblp.uni-trier.de/rec/bib/conf/fc/MoserB15},
bibsource = {dblp computer science bibliography, http://dblp.org}
}
@misc{forbes,
title = {Bitcoin is not Broken},
author = {Kashmir Hill},
year = {2013},
howpublished = {Forbes},
note = {\url{http://www.forbes.com/sites/kashmirhill/2013/11/06/bitcoin-is-not-broken/#55d4a8812568}}
}
@incollection{EyalS14,
title={Majority is not enough: Bitcoin mining is vulnerable},
author={Eyal, Ittay and Sirer, Emin G{\"u}n},
booktitle={Financial Cryptography and Data Security},
pages={436--454},
year={2014},
publisher={Springer}
}
@inproceedings{taylor2013bitcoin,
title={Bitcoin and the age of bespoke silicon},
author={Taylor, Michael Bedford},
booktitle={Proceedings of the 2013 International Conference on Compilers, Architectures and Synthesis for Embedded Systems},
pages={16},
year={2013},
organization={IEEE Press}
}
@article{AuerCFS02,
author = {P. Auer and N. Cesa-Bianchi and Y. Freund and R. E. Schapire},
title = {The nonstochastic multiarmed bandit problem},
journal = {SIAM Journal of Computing},
volume = {32},
number = {1},
year = {2002},
pages = {48-77}
}
@inproceedings{SapirshteinSZ16,
title = {Optimal Selfish Mining Strategies in Bitcoin},
author = {Ayelet Sapirshtein and Yonatan Sompolinsky and Aviv Zohar},
booktitle = {Financial Cryptography and Data Security},
year = {2016}
}
@inproceedings{NayakKMS16,
title = {Stubborn Mining: Generalizing Selfish Mining and Combining with an Eclipse Attack},
author = {Kartik Nayak and Srijan Kumar and Andrew Miller and Elaine Shi},
booktitle = {IEEE European Symposium on Security and Privacy (EuroS\&P)},
year = {2016}
}
@inproceedings{KDF13,
title={The Economics of Bitcoin Mining, or Bitcoin in the Presence of Adversaries},
author={Joshua A. Kroll and Ian C. Davey and Edward W. Felten},
booktitle={Proceedings of the Twelfth Annual Workshop on the Economics of Information Security (WEIS)},
year={2013}
}
@inproceedings{JohnsonLGVM14,
title={Game-theoretic Analysis of DDoS attacks against Bitcoin Mining pools},
author={Benjamin Johnson and Aron Laszka and Jens Grossklags and Mari Vasek and Tyler Moore},
booktitle={Proceedings of the First Workshop on Bitcoin Research},
year={2014}
}
@inproceedings{EmpiricalDDoS,
title={Empirical Analysis of denial-of-service attacks in the Bitcoin ecosystem},
author={Marie Vasek and Micha Thornton and Tyler Moore},
booktitle={Proceedings of the First Workshop on Bitcoin Research},
year={2014}
}
@inproceedings{demystifying2015,
title={Demystifying Incentives in the Consensus Computer},
author={Loi Luu and Jason Teutsch and Raghav Kulkarni and Prateek Saxena},
booktitle={Proceedings of the ACM Conference on Computer and Communications Security (CCS)},
year={2015}
}
@inproceedings{decker2013information,
title={Information propagation in the bitcoin network},
author={Decker, Christian and Wattenhofer, Roger},
booktitle={Peer-to-Peer Computing (P2P), 2013 IEEE Thirteenth International Conference on},
pages={1--10},
year={2013},
organization={IEEE}
}
@inproceedings{privacysimulator,
title={Evaluating User Privacy in Bitcoin},
author={Elli Androulaki and Ghassan O. Karame and Marc Roeschlin and Tobias Scherer and Srdjan Capkun},
booktitle={Proceedings of Financial Cryptography},
year={2013}
}
@article{peter2015transaction,
title={A Transaction Fee Market Exists Without a Block Size Limit},
author={Peter, R},
year={2015}
}
@article{Houy14,
title={The Economics of Bitcoin Transaction Fees},
author={Nicolas Houy},
year={2014},
journal = {Working Paper GATE 2014-07. halshs-00951358.}
}
@inproceedings{shadow,
title = {Shadow-bitcoin:
scalable simulation via direct execution of multithreaded
applications},
author = {Andrew Miller and Rob Jansen},
booktitle = {Proceedings of the eighth workshop on Cybersecurity Experimentations and Test (CSET)},
year = {2015}
}
@article{CKN,
title = {Mind the Gap: Security Implications of the Evolution of Bitcoin Mining},
author = {Miles Carlsten and Harry Kalodner and Arvind Naryanan},
year = {2015},
journal = {Bitcoin Scalability Workshops (presentation)},
year = {2015},
notes = {https://scalingbitcoin.org/montreal2015/presentations/Day1/13-miles-carlsten-Mind-the-Gap.pdf}
}
@inproceedings{SoK,
title = {SoK: Research Perspectives and Challenges for Bitcoin and Cryptocurrencies. },
author = {Andrew Miller and Jeremy Clark and Arvind Narayanan and Joshua A. Kroll and Edward W. Felten},
year = {2015},
booktitle = {Proceedings of the 36th IEEE Symposium on Security and Privacy (S\&P)},
year = {2015}
}
@inproceedings{EdenFFTW17a,
author = {Alon Eden and
Michal Feldman and
Ophir Friedler and
Inbal Talgam{-}Cohen and
S. Matthew Weinberg},
title = {A Simple and Approximately Optimal Mechanism for a Buyer with Complements:
Abstract},
booktitle = {Proceedings of the 2017 {ACM} Conference on Economics and Computation,
{EC} '17, Cambridge, MA, USA, June 26-30, 2017},
pages = {323},
year = {2017},
crossref = {DBLP:conf/sigecom/2017},
url = {http://doi.acm.org/10.1145/3033274.3085116},
doi = {10.1145/3033274.3085116},
timestamp = {Wed, 21 Jun 2017 09:41:38 +0200},
biburl = {https://dblp.org/rec/bib/conf/sigecom/EdenFFTW17},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@inproceedings{EdenFFTW17b,
author = {Alon Eden and
Michal Feldman and
Ophir Friedler and
Inbal Talgam{-}Cohen and
S. Matthew Weinberg},
title = {The Competition Complexity of Auctions: {A} Bulow-Klemperer Result
for Multi-Dimensional Bidders},
booktitle = {Proceedings of the 2017 {ACM} Conference on Economics and Computation,
{EC} '17, Cambridge, MA, USA, June 26-30, 2017},
pages = {343},
year = {2017},
crossref = {DBLP:conf/sigecom/2017},
url = {http://doi.acm.org/10.1145/3033274.3085115},
doi = {10.1145/3033274.3085115},
timestamp = {Wed, 21 Jun 2017 09:41:38 +0200},
biburl = {https://dblp.org/rec/bib/conf/sigecom/EdenFFTW17a},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@inproceedings{DevanurW17,
author = {Nikhil R. Devanur and
S. Matthew Weinberg},
title = {The Optimal Mechanism for Selling to a Budget Constrained Buyer: The
General Case},
booktitle = {Proceedings of the 2017 {ACM} Conference on Economics and Computation,
{EC} '17, Cambridge, MA, USA, June 26-30, 2017},
pages = {39--40},
year = {2017},
crossref = {DBLP:conf/sigecom/2017},
url = {http://doi.acm.org/10.1145/3033274.3085132},
doi = {10.1145/3033274.3085132},
timestamp = {Wed, 21 Jun 2017 09:41:38 +0200},
biburl = {https://dblp.org/rec/bib/conf/sigecom/DevanurW17},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@inproceedings{BravermanMW18,
author = {Mark Braverman and
Jieming Mao and
S. Matthew Weinberg},
title = {On Simultaneous Two-player Combinatorial Auctions},
booktitle = {Proceedings of the Twenty-Ninth Annual {ACM-SIAM} Symposium on Discrete
Algorithms, {SODA} 2018, New Orleans, LA, USA, January 7-10, 2018},
pages = {2256--2273},
year = {2018},
crossref = {DBLP:conf/soda/2018},
url = {https://doi.org/10.1137/1.9781611975031.146},
doi = {10.1137/1.9781611975031.146},
timestamp = {Thu, 04 Jan 2018 13:55:11 +0100},
biburl = {https://dblp.org/rec/bib/conf/soda/BravermanMW18},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@inproceedings{SaxenaSW18,
author = {Raghuvansh R. Saxena and
Ariel Schvartzman and
S. Matthew Weinberg},
title = {The menu complexity of "one-and-a-half-dimensional" mechanism design},
booktitle = {Proceedings of the Twenty-Ninth Annual {ACM-SIAM} Symposium on Discrete
Algorithms, {SODA} 2018, New Orleans, LA, USA, January 7-10, 2018},
pages = {2026--2035},
year = {2018},
crossref = {DBLP:conf/soda/2018},
url = {https://doi.org/10.1137/1.9781611975031.132},
doi = {10.1137/1.9781611975031.132},
timestamp = {Thu, 04 Jan 2018 13:55:11 +0100},
biburl = {https://dblp.org/rec/bib/conf/soda/SaxenaSW18},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@inproceedings{BabaioffGN17,
author = {Moshe Babaioff and
Yannai A. Gonczarowski and
Noam Nisan},
title = {The menu-size complexity of revenue approximation},
booktitle = {Proceedings of the 49th Annual {ACM} {SIGACT} Symposium on Theory
of Computing, {STOC} 2017, Montreal, QC, Canada, June 19-23, 2017},
pages = {869--877},
year = {2017},
crossref = {DBLP:conf/stoc/2017},
url = {http://doi.acm.org/10.1145/3055399.3055426},
doi = {10.1145/3055399.3055426},
timestamp = {Sat, 17 Jun 2017 18:46:57 +0200},
biburl = {https://dblp.org/rec/bib/conf/stoc/BabaioffGN17},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@inproceedings{RubinsteinSW18,
author = {Aviad Rubinstein and
Tselil Schramm and
S. Matthew Weinberg},
title = {Computing Exact Minimum Cuts Without Knowing the Graph},
booktitle = {9th Innovations in Theoretical Computer Science Conference, {ITCS}
2018, January 11-14, 2018, Cambridge, MA, {USA}},
pages = {39:1--39:16},
year = {2018},
crossref = {DBLP:conf/innovations/2018},
url = {https://doi.org/10.4230/LIPIcs.ITCS.2018.39},
doi = {10.4230/LIPIcs.ITCS.2018.39},
timestamp = {Sat, 13 Jan 2018 00:04:27 +0100},
biburl = {https://dblp.org/rec/bib/conf/innovations/RubinsteinSW18},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@inproceedings{KiayiasKKT16,
author = {Aggelos Kiayias and
Elias Koutsoupias and
Maria Kyropoulou and
Yiannis Tselekounis},
title = {Blockchain Mining Games},
booktitle = {Proceedings of the 2016 {ACM} Conference on Economics and Computation,
{EC} '16, Maastricht, The Netherlands, July 24-28, 2016},
pages = {365--382},
year = {2016},
crossref = {DBLP:conf/sigecom/2016},
url = {http://doi.acm.org/10.1145/2940716.2940773},
doi = {10.1145/2940716.2940773},
timestamp = {Fri, 22 Jul 2016 09:44:16 +0200},
biburl = {https://dblp.org/rec/bib/conf/sigecom/KiayiasKKT16},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@inproceedings{KiayiasRDO17,
author = {Aggelos Kiayias and
Alexander Russell and
Bernardo David and
Roman Oliynykov},
title = {Ouroboros: {A} Provably Secure Proof-of-Stake Blockchain Protocol},
booktitle = {Advances in Cryptology - {CRYPTO} 2017 - 37th Annual International
Cryptology Conference, Santa Barbara, CA, USA, August 20-24, 2017,
Proceedings, Part {I}},
pages = {357--388},
year = {2017},
crossref = {DBLP:conf/crypto/2017-1},
url = {https://doi.org/10.1007/978-3-319-63688-7\_12},
doi = {10.1007/978-3-319-63688-7\_12},
timestamp = {Mon, 14 Aug 2017 14:34:46 +0200},
biburl = {https://dblp.org/rec/bib/conf/crypto/KiayiasRDO17},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
@inproceedings{SapirshteinSZ16,
author = {Ayelet Sapirshtein and
Yonatan Sompolinsky and
Aviv Zohar},
title = {Optimal Selfish Mining Strategies in Bitcoin},
booktitle = {Financial Cryptography and Data Security - 20th International Conference,
{FC} 2016, Christ Church, Barbados, February 22-26, 2016, Revised
Selected Papers},
pages = {515--532},
year = {2016},
crossref = {DBLP:conf/fc/2016},
url = {https://doi.org/10.1007/978-3-662-54970-4\_30},
doi = {10.1007/978-3-662-54970-4\_30},
timestamp = {Wed, 17 May 2017 11:13:47 +0200},
biburl = {https://dblp.org/rec/bib/conf/fc/SapirshteinSZ16},